第一種:
//獲得spring資源,載入配置檔案
//獲得spring的容器例項,beanfactory這是乙個抽象的介面
beanfactory factory = new xmlbeanfactory(resource);
//從容器中找到我們的bean,也就是我們的類
ihello hi = (ihello)factory.getbean("hellobean");
第二種:
//ihello hi = (ihello)ac.getbean("hellobean");
第三種:
//從整個檔案系統中載入配置檔案
第四種:
servletcontext servletcontext = request.getsession().getservletcontext();
可以用在spring mvc的controller中,
從web-inf/下載入配置檔案
。在web程式應用中,這是幾種常用的spring配置檔案載入方式。
Spring之配置檔案載入方式
spring在org.springframework.core.io包中提供了多種配置檔案載入方式。無論是xml url還是檔案,都有很好的支援。比如基於url的urlresource 基於輸入流的inputstreamresource 基於檔案系統的filesystemresource 基於應用c...
spring配置檔案載入
spring配置檔案的裝載在web.xml中配置 此引數用於後面的spring context loader contextconfiglocation org.springframework.web.context.contextloaderlistener 說明 contextconfigloc...
spring載入配置檔案
在spring中載入配置檔案的方式 configuration propertysource import datasourceconfig.class bean public static propertysourcesplaceholderconfigurer propertysourcespl...