第一种情况是在测试类中读取配置文件中的值,实现如下:
1、在spring-mybatis配置文件中引入配置文件,代码如下:
classpath:jdbc.properties
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:spring-mybatis.xml","classpath:spring.xml"})
public class TestMyBatis{
//这是对应配置文件中的变量,给变量注入值
@Value("${picUrl}")
private String picUrl;
。。。。。。
第二种情况是在Controller中读取配置文件中的值
之前我写了两个配置文件,想同时加载,但是发现一直出现各种问题。原来在spring.xml文件中写两个这样的:
这样是行不通的。
后来我将这两个配置文件的内容合并,保存在了jdbc.properties中,便可以在Controller利用@Value对属性值进行注入了。
看看我的Controller类的写法:
@Controller
@Configuration
@ImportResource("classpath:spring.xml")
@RequestMapping("/photo")
public class FileUploadController {
@RequestMapping(value="/tofile")
public String toFileUpLoad(HttpServletRequest request,Model model){
return "fileUpLoad";
}
//@Value("#{settings['picPath.picUrl']}")
@Value("${picUrl}")
private String picUrl;
public void setPicUrl(String picUrl) {
this.picUrl = picUrl;
}
@Configuration
@ImportResource("classpath:spring.xml")
比如有A和B两个模块
A模块和B模块都分别拥有自己的Spring XML配置,并分别拥有自己的配置文件
A模块:
A模块的spring配置文件如下:
aaa.Bean1 "
p:driverClassName="${modulea.jdbc.driverClassName}"
p:url="${modulea.jdbc.url}"
p:username="${modulea.jdbc.username}"
p:password="${modulea.jdbc.password}"/>
modulea.jdbc.driverClassName=com.mysql.jdbc.Driver
modulea.jdbc.username=cartan
modulea.jdbc.password=superman
modulea.jdbc.url=jdbc:mysql://127.0.0.1:3306/modulea?useUnicode=true&characterEncoding=utf8
B模块的Spring配置文件如下:
bbb.Bean1 "
p:driverClassName="${moduleb.jdbc.driverClassName}"
p:url="${moduleb.jdbc.url}"
p:username="${moduleb.jdbc.username}"
p:password="${moduleb.jdbc.password}"/>
moduleb.jdbc.driverClassName=com.mysql.jdbc.Driver
moduleb.jdbc.username=cartan
moduleb.jdbc.password=superman
moduleb.jdbc.url=jdbc:mysql://127.0.0.1:3306/modulea?useUnicode=true&characterEncoding=utf8
问题出现了,单独运行A模块或B模块都是正常,但是将A和B两个模块集成后运行,Spring容器就启动不了:
出现的问题:Could not resolve placeholder 'moduleb.jdbc.driverClassName' in string value "${moduleb.jdbc.driverClassName}"
问题的原因是:Spring容器采用反射扫描的发现机制,在探测到Spring容器中有一个org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的Bean
就会停止对剩余PropertyPlaceholderConfigurer的扫描(Spring3.1已经使用PropertySourcesPlaceholderConfigurer替代
PropertyPlaceholderConfigurer了)。
而
即Spring容器仅允许最多定义一个PropertyPlaceholderConfigurer(或
拿上来的例子来说,如果A和B模块是单独运行的,由于Spring容器都只有一个PropertyPlaceholderConfigurer,因此属性文件会被正常加载并替换掉。如果A和B两模块集成后运行,Spring容器中就有两个PropertyPlaceholderConfigurer Bean了,这时就看谁先谁后了,
先的保留,后的忽略!因此,只加载到了一个属性文件,因而造成无法正确进行属性替换的问题。
解决办法:
属性文件加载在统一的地方做,不需要分模块加载
A模块a.xml:
aaa.Bean1 "
p:driverClassName="${modulea.jdbc.driverClassName}"
p:url="${modulea.jdbc.url}"
p:username="${modulea.jdbc.username}"
p:password="${modulea.jdbc.password}"/>
bbb.Bean1 "
p:driverClassName="${moduleb.jdbc.driverClassName}"
p:url="${moduleb.jdbc.url}"
p:username="${moduleb.jdbc.username}"
p:password="${moduleb.jdbc.password}"/>