List of usage examples for javax.servlet GenericServlet init
public void init(ServletConfig config) throws ServletException
From source file:org.jtwig.mvc.JtwigView.java
@Override protected void initApplicationContext() throws BeansException { super.initApplicationContext(); GenericServlet servlet = getGenericServlet(); try {// w w w .j ava 2 s. c o m servlet.init(getServletConfig()); } catch (ServletException ex) { throw new BeanInitializationException("Initialization of GenericServlet adapter failed", ex); } }