Spring bean屬性注入(構造器)

除了這種通過構造器注入的方法和setter方法注入外,還有一種通過anotation的方式注入 @resource

public class PersonServiceBean implements PersonService {

    @ItcastResource private PersonDao personDao;

    private String name;

   

    public void setPersonDao(PersonDao personDao) {

       this.personDao = personDao;

    }

 

    public PersonServiceBean(){}

   

    public PersonServiceBean(PersonDao personDao, String name) {

       this.personDao = personDao;

       this.name = name;

    }

 

    public void save(){

       //System.out.println(name);

       personDao.add();

    }

}

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"      
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
         
          <context:annotation-config/>
         
          <bean id="personDaoxxxx" class="cn.itcast.dao.impl.PersonDaoBean"></bean>
          <bean id="personService" class="cn.itcast.service.impl.PersonServiceBean">
           <!--
           <constructor-arg index="0" type="cn.itcast.dao.PersonDao" ref="personDao"/>
           <constructor-arg index="1" value="傳智播客"/>
            -->
          </bean>
</beans>

發佈了33 篇原創文章 · 獲贊 0 · 訪問量 7萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章