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


Java ParseException类代码示例

本文整理汇总了Java中com.lyncode.jtwig.exception.ParseException的典型用法代码示例。如果您正苦于以下问题:Java ParseException类的具体用法?Java ParseException怎么用?Java ParseException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ParseException类属于com.lyncode.jtwig.exception包,在下文中一共展示了ParseException类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: render

import com.lyncode.jtwig.exception.ParseException; //导入依赖的package包/类
/**
 * {@inheritDoc}
 */
@Override
public String render(ModelAndView modelAndView) {
    ClasspathJtwigResource templateResource = new ClasspathJtwigResource(this.templateRoot + modelAndView.getViewName());

    JtwigTemplate template = new JtwigTemplate(templateResource, jtwigConfiguration);

    String result;

    try {
        // TODO: will break if the model is not a HashMap<String, Object>
        result = template.output(new JtwigModelMap().add((java.util.Map<String, Object>) modelAndView.getModel()));
    } catch (ParseException | CompileException | RenderException e) {
        throw new RuntimeIOException(e);
    }

    return result;
}
 
开发者ID:warhuhn,项目名称:warhuhn-spark-template-jtwig,代码行数:21,代码来源:JtwigTemplateEngine.java

示例2: getContent

import com.lyncode.jtwig.exception.ParseException; //导入依赖的package包/类
public Renderable getContent() throws CompileException, ParseException {
	if (getViewResolver().isCached()) {
           // Get the name of the current theme
           String themeName = getThemeName(null);
           // Create a key with the name of the theme and the template...
           String key = StringUtils.isNotBlank(themeName) ? themeName + "_" + getUrl() : getUrl();
           // Cache the compiled template
           return getViewResolver().cache().get(key, () -> getCompiledJtwigTemplate());
	}
	return getCompiledJtwigTemplate();
}
 
开发者ID:thunderbird,项目名称:pungwecms,代码行数:12,代码来源:PungweJtwigView.java

示例3: getCompiledJtwigTemplate

import com.lyncode.jtwig.exception.ParseException; //导入依赖的package包/类
private Renderable getCompiledJtwigTemplate() throws ParseException, CompileException {
	return new JtwigTemplate(getResource(), getConfiguration()).compile();
}
 
开发者ID:thunderbird,项目名称:pungwecms,代码行数:4,代码来源:PungweJtwigView.java

示例4: main

import com.lyncode.jtwig.exception.ParseException; //导入依赖的package包/类
public static void main (String... args) throws ParseException, CompileException, RenderException {
    JtwigTemplate template = new JtwigTemplate(new File("template.twig"));
    String result = template.output(new JtwigContext().withModelAttribute("name", "Hi"));
}
 
开发者ID:lyncodev,项目名称:jtwig-examples-old,代码行数:5,代码来源:Sample.java

示例5: main

import com.lyncode.jtwig.exception.ParseException; //导入依赖的package包/类
public static void main (String... args) throws ParseException, CompileException, RenderException {
    JtwigTemplate template = new JtwigTemplate(new ClasspathJtwigResource("/views/index/sample.twig"));
    String result = template.output(new JtwigContext().withModelAttribute("name", "Jtwig"));
    System.out.println(result);
}
 
开发者ID:lyncodev,项目名称:jtwig-examples-old,代码行数:6,代码来源:SampleApp.java


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