public void init(ServletConfig servletConfig) throws ServletException {
sc = servletConfig.getServletContext();
Mvcs.setServletContext(sc);
selfName = servletConfig.getServletName();
Mvcs.set(selfName, null, null);
NutConfig config = new ServletNutConfig(servletConfig);
Mvcs.setNutConfig(config);
handler = new ActionHandler(config);
sp = config.getSessionProvider();
}