}
@Override
public void cli(Map<String, String> config, ServletConfig servletConfig) throws IOException,JspException,ServletException {
ServletContext servletContext = servletConfig.getServletContext();
HTTPServletImpl servlet=new HTTPServletImpl(servletConfig, servletContext, servletConfig.getServletName());
// webroot
String strWebroot=config.get("webroot");
if(Util.isEmpty(strWebroot,true)) throw new IOException("missing webroot configuration");
Resource root=ResourcesImpl.getFileResourceProvider().getResource(strWebroot);