您好,登錄后才能下訂單哦!
這篇文章給大家介紹利用JSP 如何實現獲取spring容器中的bean,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
JSP 獲取spring容器中bean的方法總結
方案1(Web中使用):
ApplicationContext ct = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletActionContext.getServletContext()); logService = (ISysLogService) ct.getBean("sysLogServiceImpl");
說明:getRequiredWebApplicationContext方法中需要傳入ServletContext()對象,在struts2中可以這樣獲取:
ServletActionContext.getServletContext()
方案2(通過手動啟動spring容器后獲取,如果在web中,不建議這樣使用):
//匹配多個文件
ApplicationContext ct = new FileSystemXmlApplicationContext(new String[] { "classpath:applicationContext.xml","classpath:lb/*/applicationContext-*.xml"});
//加載一個文件
ApplicationContext ct = new FileSystemXmlApplicationContext("classpath:applicationContext.xml");
關于利用JSP 如何實現獲取spring容器中的bean就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。