码迷,mamicode.com
首页 > 编程语言 > 详细

在listener或者工具中使用spring容器中的bean实例

时间:2015-02-04 14:30:59      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

在项目中经常遇见需要在Listener中或者工具中使用Spring容器中的bean实例,由于bean不能在stataic的类中使用。

介绍一种方式:

public class SpringTool {
    
    public static Object getObjectFromApplication(HttpSession session,String beanName){  
        ServletContext servletContext= session.getServletContext();
        //通过WebApplicationContextUtils 得到Spring容器的实例。  
        WebApplicationContext application=WebApplicationContextUtils.getWebApplicationContext(servletContext);   
        //返回Bean的实例。  
        return application.getBean(beanName);  
    } 
}

 

使用举例:

LoginService loginService=(LoginService) SpringTool.getObjectFromApplication(session, "loginService");

在listener或者工具中使用spring容器中的bean实例

标签:

原文地址:http://www.cnblogs.com/sdjnzqr/p/4272128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!