org.springframework.biz.web.servlet.SpringAutowireServlet Maven / Gradle / Ivy
package org.springframework.biz.web.servlet;
import org.springframework.web.context.support.WebApplicationContextUtils;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
@SuppressWarnings("serial")
public class SpringAutowireServlet extends HttpServlet {
public void init() throws ServletException {
super.init();
WebApplicationContextUtils.getWebApplicationContext(getServletContext()).getAutowireCapableBeanFactory()
.autowireBean(this);
}
}