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

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

时间:2017-08-11 11:01:46      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:web   class   实现   https   static   his   nfa   cep   http   

@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 即可实现。

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

标签:web   class   实现   https   static   his   nfa   cep   http   

原文地址:http://www.cnblogs.com/Onedayzk/p/7344239.html

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