中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

SpringBoot怎么使用applicationContext.xml配置文件

發布時間:2022-07-04 14:00:13 來源:億速云 閱讀:529 作者:iii 欄目:開發技術

這篇文章主要介紹了SpringBoot怎么使用applicationContext.xml配置文件的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇SpringBoot怎么使用applicationContext.xml配置文件文章都會有所收獲,下面我們一起來看看吧。

使用applicationContext.xml配置文件

SpringBoot默認是通過Java代碼進行依賴注入,但也為xml形式的依賴注入提供了入口,就是@ImportResource注解。

我們可以在SpringBoot的啟動類上添加這個注解并在注解的locations屬性中指定xml配置文件。(可以使用一個文件集合也可以只引入主配置文件然后在主配置文件中使用標簽引入其他子配置文件,個人更喜歡第二中方式)。

這樣容器在啟動時配置在xml文件中的BeanDefination也可以被解析。 

applicationContext 加載配置文件

ApplicationContext 理解為spring容器的上下文,通過上下文操作容器中bean.

  • ClassPathXmlApplicationContext:加載classpath下的配置文件創建一個容器實例

  • FileSystemXmlApplicationContext: 加載文件系統中任意目錄下的配置文件,創建一個容器實例

案例

/*方式一 :ClassPathXmlApplicationContext*/
ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext("spring.xml");
/*方式二 FileSystemXmlApplicationContext */
        //FileSystemXmlApplicationContext ioc= new FileSystemXmlApplicationContext("E://1804_2//20180827spring//config//spring.xml");
        User u = (User) ioc.getBean("user1");
        System.out.println(u);

多文件的加載方法

/*方式一*/
//ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext("spring.xml,spring-mvc.xml");
/*方式二*/
//ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext(new String[]{"spring.xml,spring-mvc.xml"});
/*方式三*/
//ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext("spring-*.xml");
/*方式四*/
//ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext(new String []{"classpath:spring-*.xml","mybatis.xml"});
/*方式五*/
//ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext("classpath:*.xml");
/*方式六*/
//ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext("classpath*:*.xml");
/*方式七*/
//ClassPathXmlApplicationContext ioc = new ClassPathXmlApplicationContext(new String []{"classpath:*.xml","classpath:springmvc/beans.xml"});

關于“SpringBoot怎么使用applicationContext.xml配置文件”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“SpringBoot怎么使用applicationContext.xml配置文件”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

齐齐哈尔市| 新野县| 田林县| 新源县| 油尖旺区| 哈巴河县| 南部县| 西华县| 仁怀市| 恩平市| 青龙| 张家港市| 囊谦县| 道真| 平山县| 远安县| 门头沟区| 长汀县| 巴南区| 左贡县| 青河县| 高陵县| 犍为县| 沙坪坝区| 长沙市| 凯里市| 阿坝县| 徐闻县| 余姚市| 藁城市| 石门县| 武清区| 泸定县| 木兰县| 阆中市| 砀山县| 渭源县| 喀喇沁旗| 镇安县| 平原县| 达州市|