本文整理汇总了Java中freemarker.template.Configuration.VERSION_2_3_21属性的典型用法代码示例。如果您正苦于以下问题:Java Configuration.VERSION_2_3_21属性的具体用法?Java Configuration.VERSION_2_3_21怎么用?Java Configuration.VERSION_2_3_21使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类freemarker.template.Configuration
的用法示例。
在下文中一共展示了Configuration.VERSION_2_3_21属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
@PostConstruct
public void init() throws IOException {
configuration = new Configuration(Configuration.VERSION_2_3_21);
File templateDir = new File(baseDir);
templateDir.mkdirs();
configuration.setDirectoryForTemplateLoading(templateDir);
}
示例2: freemarkerConfig
@Bean
@Lazy
public Configuration freemarkerConfig(Config config) {
Configuration configuration = new freemarker.template.Configuration(Configuration.VERSION_2_3_21);
String templateDirString = config.getString("alerter.converter.freemarker.templates_dir");
File templateDir = new File(templateDirString);
try {
configuration.setDirectoryForTemplateLoading(templateDir);
} catch (IOException e) {
throw new RuntimeException("Could not set Freemarker template directory");
}
return configuration;
}
示例3: init
@PostConstruct
public void init() throws IOException {
cfg = new Configuration(Configuration.VERSION_2_3_21);
cfg.setClassForTemplateLoading(App.class, "/queries/");
cfg.setDefaultEncoding("UTF-8");
cfg.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
tpl = cfg.getTemplate(FTL);
}