欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring3 jar 读取外部属性文件的配置方法 博客分类: spring  

程序员文章站 2024-03-23 16:08:10
...

      使用maven-jar插件,将项目打成jar包,将jar以及其依赖的jar放在lib中,配置文件放在config中,bin是shell启动脚本。整个目录结构如下

spring3 jar 读取外部属性文件的配置方法
            
    
    博客分类: spring  

 

spring 读取jar外部的properties文件,常用的classpath,classpath*是不行的,需要使用file,具体代码如下

<!-- 定义受环境影响易变的变量 -->
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
		<property name="ignoreResourceNotFound" value="true" />
		<property name="locations">
			<list>
				<!-- 标准配置 -->
				<value>file:../config/application.properties</value>
				<value>file:../config/jdbc.properties</value>
			</list>
		</property>
	</bean>
  • spring3 jar 读取外部属性文件的配置方法
            
    
    博客分类: spring  
  • 大小: 6.7 KB