autowired spring(2)
添加时间:2013-5-9 点击量:
在beans中增长
xmlns:context=http://www.springframework.org/schema/context
在xsi中增长
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
则应用<context:annotation-config/>就可以应用autowired主动装配
加载资料设备
1 <bean id=propertyConfig class=org.springframework.beans.factory.config.PropertyPlaceholderConfigurer>
2 <property name=location>
3 <value>config/SqlMapConfig.properties</value>
4 </property>
5 </bean>
再鄙人面的设备中,须要应用SqlMapConfig.properties中的设备时,eg。 设备中有一个driver=com.mysql.jdbc.Driver,获取这个设备就是应用¥{driver}
导入其他的spring设备
1 <import resource=config/applicationDataSource.xml/>
或者经由过程<context:property-placeholder>元素简单的注册
在beans中的设备和<context:annotation-config/>雷同,
<context:property-placeholder location=config.properties />
所有随风而逝的都属于昨天的,所有历经风雨留下来的才是面向未来的。—— 玛格丽特·米切尔 《飘》
在beans中增长
xmlns:context=http://www.springframework.org/schema/context
在xsi中增长
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
则应用<context:annotation-config/>就可以应用autowired主动装配
加载资料设备
1 <bean id=propertyConfig class=org.springframework.beans.factory.config.PropertyPlaceholderConfigurer>
2 <property name=location>
3 <value>config/SqlMapConfig.properties</value>
4 </property>
5 </bean>
再鄙人面的设备中,须要应用SqlMapConfig.properties中的设备时,eg。 设备中有一个driver=com.mysql.jdbc.Driver,获取这个设备就是应用¥{driver}
导入其他的spring设备
1 <import resource=config/applicationDataSource.xml/>
或者经由过程<context:property-placeholder>元素简单的注册
在beans中的设备和<context:annotation-config/>雷同,
<context:property-placeholder location=config.properties />
所有随风而逝的都属于昨天的,所有历经风雨留下来的才是面向未来的。—— 玛格丽特·米切尔 《飘》