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

溫馨提示×

溫馨提示×

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

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

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

巴青县| 永和县| 常德市| 周至县| 台南县| 永宁县| 永新县| 视频| 灵宝市| 新民市| 梁河县| 资兴市| 遂川县| 邢台市| 治县。| 修水县| 南部县| 宁海县| 宜黄县| 伊吾县| 喀喇沁旗| 义马市| 长垣县| 那坡县| 斗六市| 屏边| 伊宁县| 肇东市| 张北县| 石河子市| 井陉县| 安康市| 平果县| 莆田市| 涿州市| 定日县| 铜鼓县| 新宾| 崇州市| 诏安县| 伊宁县|