91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解spring自動掃描包

發布時間:2020-10-23 21:12:56 來源:腳本之家 閱讀:140 作者:qq_36098284 欄目:編程語言

配置文件

前面的例子我們都是使用XML的bean定義來配置組件。在一個稍大的項目中,通常會有上百個組件,如果這些組件采用XML的bean定義來配置,顯然會增加配置文件的體積,查找及維護起來也不太方便。

Spring2.5為我們引入了組件自動掃描機制,它可以在類路徑底下尋找標注了@Component、@Service、@Controller、@Repository注解的類,并把這些類納入進Spring容器中管理。

它的作用和在XML文件中使用bean節點配置組件是一樣的。要使用自動掃描機制,我們需要打開以下配置信息:

<?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.xsd
  http://www.springframework.org/schema/context
  http://www.springframework.org/schema/context/spring-context-4.2.xsd">
 <context:component-scan base-package="cn.itcast" />
</beans>

其中<context:component-scan base-package="cn.itcast" />這個配置隱式注冊了多個對注解進行解析處理的處理器,包括<context:annotation-config/>該配置注冊的處理器,也就是說寫了<context:component-scan base-package="cn.itcast" />配置,就不用寫<context:annotation-config/>配置了,此外base-package為需要掃描的包(含子包)。

注解

@Service用于標注業務層組件、 @Controller用于標注控制層組件(如Struts2中的action)、@Repository用于標注數據訪問組件,即DAO組件。而@Component泛指組件,當組件不好歸類的時候,我們可以使用這個注解進行標注。
本文是建立在@Autowire注解與自動裝配的案例基礎上的。

我們首先將Spring的配置文件改為:

<?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.xsd  http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-4.2.xsd">
 <context:component-scan base-package="cn.itcast" />
</beans>

一個實例

然后使用@Service注解標注PersonServiceBean類,如下:

@Service
public class PersonServiceBean implements PersonService {
 private PersonDao personDao;
 public void setPersonDao(PersonDao personDao) {
  this.personDao = personDao;
 }
 @Override
 public void save() {
  personDao.add();
 }
}

使用@Repository注解標注PersonDaoBean類,如下:

@Repository
public class PersonDaoBean implements PersonDao {
 @Override
 public void add() {
  System.out.println("執行PersonDaoBean中的add()方法");
 }
}

最后,我們修改SpringTest類的代碼為:

public class SpringTest {
 @Test
 public void instanceSpring() {
  AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); 
  PersonService personService = (PersonService) ctx.getBean("personServiceBean");
  PersonDao personDao = (PersonDao) ctx.getBean("personDaoBean");
  System.out.println(personService);
  System.out.println(personDao);
  ctx.close();
 }
}

測試instanceSpring()方法,可看到Eclipse控制臺打印:

詳解spring自動掃描包

如果我們想使用按指定名稱獲取,可將PersonServiceBean類的代碼修改為:

@Service("personService")
public class PersonServiceBean implements PersonService {
 private PersonDao personDao;
 public void setPersonDao(PersonDao personDao) {
  this.personDao = personDao;
 }
 @Override
 public void save() {
  personDao.add();
 }
}

這樣,SpringTest類的代碼應改為:

public class SpringTest {
 @Test
 public void instanceSpring() {
  AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); 
  PersonService personService = (PersonService) ctx.getBean("personService");
  System.out.println(personService);
  ctx.close();
 }
}

測試instanceSpring()方法,可看到Eclipse控制臺打印:

詳解spring自動掃描包

我們前面學過Spring管理的bean的作用域,我們就能知道以上Spring管理的兩個bean的作用域默認是singleton。當然了,我們也可以更改Spring管理的bean的作用域,如將PersonServiceBean類的代碼改為:

@Service("personService") @Scope("prototype")
public class PersonServiceBean implements PersonService {
 private PersonDao personDao;
 public void setPersonDao(PersonDao personDao) {
  this.personDao = personDao;
 }
 @Override
 public void save() {
  personDao.add();
 }
}

意味著Spring管理的PersonServiceBean這個bean的作用域變成prototype了,這時我們將SpringTest類的代碼修改為:

public class SpringTest {
 @Test
 public void instanceSpring() {
  AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); 
  PersonService personService1 = (PersonService) ctx.getBean("personService");
  PersonService personService2 = (PersonService) ctx.getBean("personService");
  System.out.println(personService1 == personService2);
  ctx.close();
 }
}

測試instanceSpring()方法,可看到Eclipse控制臺打印:

詳解spring自動掃描包

prototype作用域本來就意味著每次從Spring容器獲取bean都是新的對象嘛。

若是通過在classpath路徑下自動掃描方這種式把組件納入Spring容器中管理,如何指定bean的初始化方法和銷毀方法呢?這時我們就需要用到兩個注解:@PostConstruct和@PreDestroy。為了試驗,我們將PersonServiceBean類的代碼修改為:

@Service("personService")
public class PersonServiceBean implements PersonService {
 private PersonDao personDao;
 @PostConstruct
 public void init() {
  System.out.println("初始化資源");
 }
 @PreDestroy
 public void destroy() {
  System.out.println("銷毀、關閉資源");
 }
 public void setPersonDao(PersonDao personDao) {
  this.personDao = personDao;
 }
 @Override
 public void save() {
  personDao.add();
 }
}

接下來還要將SpringTest類的代碼修改為:

public class SpringTest {
 @Test
 public void instanceSpring() {
  AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); 
  PersonService personService = (PersonService) ctx.getBean("personService");
  ctx.close();
 }
}

這樣,測試instanceSpring()方法,Eclipse控制臺會打印:

詳解spring自動掃描包

如要查看源碼,可點擊讓Spring自動掃描和管理Bean進行下載。

總結

以上所述是小編給大家介紹的spring自動掃描包,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平定县| 上饶县| 呼玛县| 河北省| 江口县| 拜泉县| 陆丰市| 邯郸县| 临洮县| 湛江市| 安庆市| 阿拉善左旗| 屏东市| 西和县| 贡山| 宜黄县| 噶尔县| 通州市| 喀什市| 晋江市| 安多县| 鹿泉市| 湖州市| 合山市| 石棉县| 永仁县| 仪陇县| 观塘区| 澜沧| 永宁县| 库伦旗| 武强县| 石狮市| 新民市| 凉山| 陕西省| 荥经县| 德庆县| 宁城县| 陆良县| 南澳县|