成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

如何使用Spring全家桶

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

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

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

 
  1. package com.mengma.ioc;

  2. publicclassPersonDaoImpl implementsPersonDao {

  3. @Override

  4. publicvoid add() {

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

  6. }

  7. }

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

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

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

 
  1. <?xml version="1.0" encoding="UTF-8"?>

  2. <beansxmlns="http://www.springframework.org/schema/beans"

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

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

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

  6. <!-- 由 Spring容器創(chuàng)建該類(lèi)的實(shí)例對(duì)象 -->

  7. <beanid="personDao" class="com.mengma.ioc.PersonDaoImpl" />

  8. </beans>

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

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

5. 編寫(xiě)測(cè)試類(lèi)

在 com.mengma.ioc 包下創(chuàng)建測(cè)試類(lèi) FirstTest,并在該類(lèi)中添加一個(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. // 通過(guò)容器獲取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 容器,接下來(lái)通過(guò) Spring 容器獲取了 personDao 實(shí)例,最后調(diào)用實(shí)例的 save() 方法。

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

當(dāng)前題目:如何使用Spring全家桶
網(wǎng)站路徑:http://jinyejixie.com/article30/podsso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計(jì)、商城網(wǎng)站品牌網(wǎng)站建設(shè)、微信公眾號(hào)、定制開(kāi)發(fā)、服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設(shè)