如何獲得spring上下文的方法總結(jié)
一 前言
打算重溫spring,以后可能每周會發(fā)一篇吧,有空就搞搞;
二 獲取上下文的幾種方式
AnnotationConfigApplicationContext:從一個或多個基于Java的配置類中加載Spring應(yīng)用上下文。 AnnotationConfigWebApplicationContext:從一個或多個基于Java的配置類中加載Spring Web應(yīng)用上下文。 ClassPathXmlApplicationContext:從類路徑下的一個或多個XML配置文件中加載上下文定義。 FileSystemXmlapplicationcontext:從文件系統(tǒng)下的一個或多個XML配置文件中加載上下文定義。 XmlWebApplicationContext:從Web應(yīng)用下的一個或多個XML配置文件中加載上下文定義2.1 準(zhǔn)備工作
被單實體
public class Sheet { // 顏色 private String color; // 長度 private String length; // 省略 set get}
sheet.xml 里面注入了Bean Sheet, 并且默認(rèn)初始化 color值為red;
<?xml version='1.0' encoding='UTF-8'?><beans xmlns='http://www.springframework.org/schema/beans' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd'> <bean class='com.zszxz.bean.Sheet'> <property name='color' value='pink'></property> </bean></beans>
2.2FileSystemXmlapplicationcontext 獲取上下文
FileSystemXmlApplicationContext 構(gòu)造器參數(shù)中需要指定sheet.xml具體文件系統(tǒng)路徑;獲得上下文之后再通過getBean方法獲取Bean Sheet; 拿到對象后使用getColor 方法打印顏色,為pink;
public static void main(String[] args) { // xml路徑 String path = 'C:javaworkspaceforresourcestudy-springobtain-bean-waysrcmainresourcessheet.xml'; // 從文件系統(tǒng)中獲取上下文 ApplicationContext applicationContext = new FileSystemXmlApplicationContext(path); // 獲取bean Sheet sheet = (Sheet) applicationContext.getBean('sheet'); // pink System.out.println(sheet.getColor()); }
2.3ClassPathXmlApplicationContext獲取上下文
ClassPathXmlApplicationContext 傳入?yún)?shù)是類路徑下sheet.xml的路徑;
public static void main(String[] args) { // 獲取上下文 ApplicationContext applicationContext = new ClassPathXmlApplicationContext('sheet.xml'); // 獲得實例 Sheet sheet = (Sheet) applicationContext.getBean('sheet'); // pink System.out.println(sheet.getColor()); }
2.4AnnotationConfigApplicationContext獲取上下文
AnnotationConfigApplicationContext 獲取上下文,是通過java配置的方式獲取上下文;知識追尋者這邊需要進(jìn)行java配置,內(nèi)容如下,等同于之前的sheet.xml
/** * @Author lsc * <p> sheet配置類等同于sheet.xml</p> */@Configurationpublic class SeetConfig { // 往配置類中注入Bean @Bean public Sheet sheet(){ // 創(chuàng)建對象 Sheet sheet = new Sheet(); // 設(shè)置屬性 sheet.setColor('pink'); return sheet; }}
獲取方式如下,傳入AnnotationConfigApplicationContext 參數(shù)是SeetConfig.class
public static void main(String[] args) { // 獲取上下文 ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SeetConfig.class); // 獲得實例 Sheet sheet = (Sheet) applicationContext.getBean('sheet'); // pink System.out.println(sheet.getColor()); }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. CSS hack用法案例詳解2. asp(vbs)Rs.Open和Conn.Execute的詳解和區(qū)別及&H0001的說明3. 解決AJAX返回狀態(tài)200沒有調(diào)用success的問題4. PHP設(shè)計模式中工廠模式深入詳解5. ASP 信息提示函數(shù)并作返回或者轉(zhuǎn)向6. 利用promise及參數(shù)解構(gòu)封裝ajax請求的方法7. Ajax實現(xiàn)表格中信息不刷新頁面進(jìn)行更新數(shù)據(jù)8. JSP數(shù)據(jù)交互實現(xiàn)過程解析9. ThinkPHP5實現(xiàn)JWT Token認(rèn)證的過程(親測可用)10. .NET中l(wèi)ambda表達(dá)式合并問題及解決方法
