本篇内容介绍了“如何使用@Value值注入及配置文件组件扫描”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
@Value值注入及配置文件组件扫描spring配置文件对应的是父容器,springMVC配置文件产生的是子容器,前者一般配置数据源,事务,注解等,当然还可以进一步将一些配置细化到其他xml中;后者一般配置控制层相关的,如静态资源,视图解析器等。
系统启动的时候,先初始化父容器,然后初始化子容器。这里会涉及一个问题,如果配置组件扫描时都配置全组件扫描,就会导致service组件会被扫描两次,造成事务无法处理。
所以最好在springMVC配置文件中只做controller的扫描,在spring配置文件中扫描其他组件。
在spring的配置文件中配置:<context:component-scan base-package="com"/>在springMVC的配置文件中配置:<context:component-scan base-package="com.**.controller"/>这样就能各司其职了。
在使用中,这两个配置文件作用不同。如果要使用@Value注入一些系统配置文件中的变量时要注意:如果要在controller中使用注入的变量,需要在springMVC的配置文件中配置:
<context:property-placeholder location="classpath:{your variable file}.properties"/>如果只在spring的配置文件中配置,那么在controller中是不会注入成功的。原因是:在项目启动时,先初始化父容器,再初始化子容器。如果两者在初始化时扫描了同样的组件,则子容器会覆盖父容器的相关的bean。子容器因为没有配置环境变量的文件bean,因此会用null覆盖掉原值(子容器能看到父容器的bean,反过来则不行)。
测试demo如下:@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {"classpath:applicationContext.xml", "classpath:servlet-dispatcher.xml"}) public class InjecTest { @Value("${ly.key}") private String key; @Test public void test(){ System.out.println("注入的key为:"+key); }基于@Value进行注入时有两种方式,占位符和spel表达式
//占位符方式 @Value("${jdbc.url}") private String url; //SpEL表达方式,其中代表xml配置文件中的id值configProperties @Value("#{configProperties['jdbc.username']}") private String userName;这两种方式需要在xml中配置时也是不一样的
<!--基于占位符方式 配置单个properties --> <!--<context:property-placeholder location="conf/jdbc.properties"/>--> <!--基于占位符方式 配置多个properties --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:config/resource/dev/application.properties</value> <value>classpath:config/resource/dev/lyframework.properties</value> <value>classpath:config/resource/dev/common.properties</value> </list> </property> </bean> <!--基于SpEL表达式 配置多个properties id值为configProperties 提供java代码中使用 --> <bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"> <property name="locations"> <list> <value>classpath:/conf/jdbc.properties</value> </list> </property> </bean> <!--基于SpEL表达式 配置单个properties --> <!--<util:properties id="configProperties" location="classpath:conf/jdbc.properties"/>-->Spring @Value获取不到值一、问题背景郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。