public void init(ServletConfig config) throws ServletException {
initData();
ServletContext ctx = config.getServletContext();
File templateDir = new File(ctx.getRealPath("/WEB-INF/templates"));
TemplateLoader loader = new DirectoryTemplateLoader(templateDir, "UTF-8");
tf = loader.newTemplateFactory("users.html", Expressions.cambridgeExpressionLanguage);
}