Servlet中使用Spring bean或自动织入
问题:
在Servlet中,如果像在其他服务类中一样使用@Autowired注解,则达不到自动注入的效果,例如:
public class OneDemoServlet extends HttpServlet{
/**
*
*/
private static final long serialVersionUID = 121334411244623232133L;
@Autowired
OneClient oneClient;
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
doPost(req, resp);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
String actionType = req.getParameter("action");
if(xxx.equals(actionType)){
oneClient.doSomething();
}
//...
}
}
原因:
“在应用中一般普通的JavaPojo都是由spring来管理的,所以使用autowire注解来进行注入不会产生问题,但是有两个东西是例外的,一个是 Filter,一个是Servlet,这两样东西都是由Servlet容器来维护管理的,所以如果想和其他的Bean一样使用Autowire来注入的 话,是需要做一些额外的功夫的。
对于Filter,Spring提供了DelegatingFilterProxy”。
参考:http://blog.csdn.net/axzywan/article/details/8056892
解决:
在Servlet的init()初始化方法中获取Beand对象。
方法一:使用Spring工具类获取bean。
OneClient oneClient; public void init(ServletConfigconfig) throws ServletException { super.init(config); ServletContext servletContext = this.getServletContext(); WebApplicationContext wac = null; wac = WebApplicationContextUtils .getRequiredWebApplicationContext(servletContext); udsClient = (UdsClient)wac.getBean("oneClient"); System.out.println("oneClient:" +oneClient); } |
方法二:使用自动织入
@Autowired OneClient oneClient; public void init(ServletConfigconfig) throws ServletException { super.init(config); SpringBeanAutowiringSupport.processInjectionBasedOnServletContext( this,config.getServletContext()); } |