其他分享
首页 > 其他分享> > Spring的DI依赖注入

Spring的DI依赖注入

作者:互联网

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

标签:xml,依赖,DI,Spring,classpath,bean,ref,properties,属性
来源: https://www.cnblogs.com/maomao777/p/16590264.html