本篇內(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ù)。
在項(xiàng)目的 src 目錄下創(chuàng)建一個(gè)名為 com.mengma.ioc 的包,download:玩轉(zhuǎn)Spring全家桶,然后在該包中創(chuàng)建一個(gè)名為 PersonDao 的接口,并在接口中添加一個(gè) add() 方法
package com.mengma.ioc;
publicinterfacePersonDao {
publicvoid add();
}
在 com.mengma.ioc 包下創(chuàng)建 PersonDao 的實(shí)現(xiàn)類 PersonDaoImpl,編輯后如下所示。
package com.mengma.ioc;
publicclassPersonDaoImpl implementsPersonDao {
@Override
publicvoid add() {
System.out.println("save()執(zhí)行了...");
}
}
上述代碼中,PersonDaoImpl 類實(shí)現(xiàn)了 PersonDao 接口中的 add() 方法,并且在方法調(diào)用時(shí)會(huì)執(zhí)行輸出語句。
在 src 目錄下創(chuàng)建 Spring 的核心配置文件 applicationContext.xml,編輯后如下所示。
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
上述代碼中,第 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)。
在 com.mengma.ioc 包下創(chuàng)建測(cè)試類 FirstTest,并在該類中添加一個(gè)名為 test1() 的方法,編輯后如下所示。
package com.mengma.ioc;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
publicclassFirstTest {
@Test
publicvoid testl() {
// 定義Spring配置文件的路徑
String xmlPath = "applicationContext.xml";
// 初始化Spring容器,加載配置文件
ApplicationContext applicationContext = newClassPathXmlApplicationContext(
xmlPath);
// 通過容器獲取personDao實(shí)例
PersonDao personDao = (PersonDao) applicationContext
.getBean("personDao");
// 調(diào)用 personDao 的 add ()方法
personDao.add();
}
}
上述代碼中,首先定義了 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í)用文章!