真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何使用Spring全家桶

本篇內(nèi)容介紹了“如何使用Spring全家桶”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)公司專注于黎平網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供黎平營銷型網(wǎng)站建設(shè),黎平網(wǎng)站制作、黎平網(wǎng)頁設(shè)計(jì)、黎平網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)服務(wù),打造黎平網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供黎平網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

創(chuàng)建 PersonDao 接口

在項(xiàng)目的 src 目錄下創(chuàng)建一個(gè)名為 com.mengma.ioc 的包,download:玩轉(zhuǎn)Spring全家桶,然后在該包中創(chuàng)建一個(gè)名為 PersonDao 的接口,并在接口中添加一個(gè) add() 方法

  1. package com.mengma.ioc;

  2. publicinterfacePersonDao {

  3. publicvoid add();

  4. }

3. 創(chuàng)建接口實(shí)現(xiàn)類 PersonDaoImpl

在 com.mengma.ioc 包下創(chuàng)建 PersonDao 的實(shí)現(xiàn)類 PersonDaoImpl,編輯后如下所示。

 
  1. package com.mengma.ioc;

  2. publicclassPersonDaoImpl implementsPersonDao {

  3. @Override

  4. publicvoid add() {

  5. System.out.println("save()執(zhí)行了...");

  6. }

  7. }

上述代碼中,PersonDaoImpl 類實(shí)現(xiàn)了 PersonDao 接口中的 add() 方法,并且在方法調(diào)用時(shí)會(huì)執(zhí)行輸出語句。

4. 創(chuàng)建 Spring 配置文件

在 src 目錄下創(chuàng)建 Spring 的核心配置文件 applicationContext.xml,編輯后如下所示。

 
  1. xmlns="http://www.springframework.org/schema/beans"

  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"

  3. xsi:schemaLocation="http://www.springframework.org/schema/beans

  4. http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">

  5. id="personDao" class="com.mengma.ioc.PersonDaoImpl" />

上述代碼中,第 2~5 行代碼是 Spring 的約束配置,第 7 行代碼表示在 Spring 容器中創(chuàng)建一個(gè) id 為 personDao 的 bean 實(shí)例,其中 id 表示文件中的唯一標(biāo)識(shí)符,class 屬性表示指定需要實(shí)例化 Bean 的實(shí)全限定類名(包名+類名)。

需要注意的是,Spring 的配置文件名稱是可以自定義的,通常情況下,都會(huì)將配置文件命名為 applicationContext.xml(或 bean.xml)。

5. 編寫測(cè)試類

在 com.mengma.ioc 包下創(chuàng)建測(cè)試類 FirstTest,并在該類中添加一個(gè)名為 test1() 的方法,編輯后如下所示。

 
  1. package com.mengma.ioc;

  2.  

  3. import org.junit.Test;

  4. import org.springframework.context.ApplicationContext;

  5. import org.springframework.context.support.ClassPathXmlApplicationContext;

  6.  

  7. publicclassFirstTest {

  8. @Test

  9. publicvoid testl() {

  10. // 定義Spring配置文件的路徑

  11. String xmlPath = "applicationContext.xml";

  12. // 初始化Spring容器,加載配置文件

  13. ApplicationContext applicationContext = newClassPathXmlApplicationContext(

  14. xmlPath);

  15. // 通過容器獲取personDao實(shí)例

  16. PersonDao personDao = (PersonDao) applicationContext

  17. .getBean("personDao");

  18. // 調(diào)用 personDao 的 add ()方法

  19. personDao.add();

  20. }

  21.  

  22. }

上述代碼中,首先定義了 Spring 配置文件的路徑,然后創(chuàng)建 Spring 容器,接下來通過 Spring 容器獲取了 personDao 實(shí)例,最后調(diào)用實(shí)例的 save() 方法。

“如何使用Spring全家桶”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


標(biāo)題名稱:如何使用Spring全家桶
文章起源:http://weahome.cn/article/podsso.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部