当前位置: 首页>>代码示例>>Java>>正文


Java Configuration.VERSION_2_3_21属性代码示例

本文整理汇总了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);
}
 
开发者ID:zhaojunfei,项目名称:lemon,代码行数:8,代码来源:FreemarkerTemplateService.java

示例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;
}
 
开发者ID:balamaci,项目名称:muninn,代码行数:14,代码来源:FreemarkerConfiguration.java

示例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);
}
 
开发者ID:petabyte-research,项目名称:redflags,代码行数:8,代码来源:NoticesSvc.java


注:本文中的freemarker.template.Configuration.VERSION_2_3_21属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。