转载自:https://blog.csdn.net/mountain1164528154/article/details/79425521
在使用spring(未涉及springboot)进行读取配置文件中的属性值时,在controller中 @value 值无法注入,配置正确,配置文件也找得到。
话不多说,先上代码:
由于使用的是spring配置文件方式,
web.xml中
contextConfigLocation
classpath:config/spring/applicationContext.xml,
classpath:config/spring/spring-a.xml
springmvc
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:config/spring/springmvc-servlet.xml
1
spring/spring-a.xml
只在此配置中引入要注入属性的配置文件。
<context:component-scan base-package="com.controller" />
<context:component-scan base-package="com.dao" />
<context:component-scan base-package="com.service" />
<context:property-placeholderlocation="classpath:config/properties/xx.properties" />
applicationContext.xml和springmvc-servlet.xml都配置了controller的包扫描
<context:component-scan base-package="com.controller" />
在网上的查找了很多,总结下来springmvc的context和spring的context不是一个。
最终结果是:由于在applicationContext.xml和springmvc-servlet.xml都配置了controller的包扫描,
相当于spring容器和springmvc都要对controller包下的bean进行初始化。第一次是spring容器初始化controller包下的bean,
由于applicationContext里引入了配置文件所以初始化时属性set进去了,而springmvc容器中没有引入配置文件,因此再次初始化时没有此属性,因此无法把配置文件中的值放进去。
解决方法:
在springmvc配置文件中加入此配置文件
例:
<context:property-placeholder location=“classpath:config/properties/xx.properties” />