public void init(ServletConfig config) throws ServletException {
super.init(config);
this.log = Logger.getLogger("com.gentics.cr");
this.crConf = new CRServletConfig(config);
this.response_encoding = crConf.getEncoding();
this.vtl = crConf.getTemplateManager();
String qt = (String) crConf.get("querytemplate");
if (qt != null) {
this.querytemplate = qt;