本文整理汇总了Java中no.api.freemarker.java8.Java8ObjectWrapper类的典型用法代码示例。如果您正苦于以下问题:Java Java8ObjectWrapper类的具体用法?Java Java8ObjectWrapper怎么用?Java Java8ObjectWrapper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Java8ObjectWrapper类属于no.api.freemarker.java8包,在下文中一共展示了Java8ObjectWrapper类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: TemplateEngineFreemarker
import no.api.freemarker.java8.Java8ObjectWrapper; //导入依赖的package包/类
public TemplateEngineFreemarker() {
this.configuration.setClassForTemplateLoading(this.getClass(), Default.TEMPLATES_FOLDER.toString());
this.configuration.setDefaultEncoding(Charsets.UTF_8.name());
this.configuration.setOutputEncoding(Charsets.UTF_8.name());
this.configuration.setLocalizedLookup(false);
this.configuration.setNumberFormat(Default.NUMBER_FORMAT.toString());
this.configuration.setTemplateLoader(new TemplateEngineLoader(configuration.getTemplateLoader()));
this.configuration.setAPIBuiltinEnabled(true);
this.configuration.setObjectWrapper(new Java8ObjectWrapper(VERSION));
if (Application.inDevMode()) {
this.configuration.setTemplateUpdateDelayMilliseconds(ONE_SECOND_MS);
} else {
this.configuration.setTemplateUpdateDelayMilliseconds(Integer.MAX_VALUE);
this.configuration.setCacheStorage(new MruCacheStorage(STRONG_SIZE_LIMIT, Integer.MAX_VALUE));
}
}
示例2: DateTimeStepdefs
import no.api.freemarker.java8.Java8ObjectWrapper; //导入依赖的package包/类
public DateTimeStepdefs() {
this.configuration = new Configuration(VERSION_2_3_23);
this.configuration.setObjectWrapper(new Java8ObjectWrapper(VERSION_2_3_23));
}