servlet中如何实现通过Spring实现对象的注入

@WebServlet("/BaseServlet")
public class BaseServlet extends HttpServlet {
private static final long serialVersionUID = 1L;

public void init() throws ServletException {
super.init();
WebApplicationContextUtils.getWebApplicationContext(getServletContext()).getAutowireCapableBeanFactory().autowireBean(this);
}

}

 

需要注入的servlet可以通过继承BaseServlet 即可实现。

posted @ 2017-08-11 09:48  .Oneday  阅读(469)  评论(0编辑  收藏  举报