xml中依赖注入bean
bean标签下
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<!-- 引入其他配置文件 -->
<import resource="business/DevicePath_Bean.xml"/>
<bean id="DevicePathCacheImpl__MCACHE__" class="com.uts.intelligent.pathmanager.cache.DevicePathCacheImpl">
<!--通过访问到当前类中同名的属性(Set注入,该属性在类中重写了setter方法),通过ref注入bean
ref标签中的属性: local属性代表当前的xml配置文件中的bean,而bean属性则代表整个容器中改id的bean-->
<property name="devicePathDAO" >
<ref local="DevicePathDao"/>
</property>
</bean>
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:memcache.properties</value>
<value>classpath:jdbc.properties</value>
<value>classpath:httpclient.properties</value>
<value>classpath:sign.properties</value>
<value>classpath:workflow.properties</value>
</list>
</property>
</bean>
</beans>
通过访问到当前类中同名的属性,通过ref注入bean
ref标签中的属性: local属性代表当前的xml配置文件中的bean,而bean属性则代表整个容器中改id的bean
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/280838.html