controller中 @value 值无法注入

转载自: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” />

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值