您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringBoot怎么使用applicationContext.xml配置文件的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇SpringBoot怎么使用applicationContext.xml配置文件文章都會有所收獲,下面我們一起來看看吧。
SpringBoot默認是通過Java代碼進行依賴注入,但也為xml形式的依賴注入提供了入口,就是@ImportResource注解。
我們可以在SpringBoot的啟動類上添加這個注解并在注解的locations屬性中指定xml配置文件。(可以使用一個文件集合也可以只引入主配置文件然后在主配置文件中使用標簽引入其他子配置文件,個人更喜歡第二中方式)。
這樣容器在啟動時配置在xml文件中的BeanDefination也可以被解析。
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配置文件”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。