Ref: https://segmentfault.com/q/1010000019886287?utm_source=tag-newest
在Servlet中将@Resource替换成@AutoWirted,并在Servlet中重写init()方法
@Override
public void init() throws ServletException {
super.init();
WebApplicationContext wac = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
AutowireCapableBeanFactory factory = wac.getAutowireCapableBeanFactory();
factory.autowireBean(this);
}