Package ratpack.groovy.templating

Examples of ratpack.groovy.templating.TemplateModel


  }

  void execute(Map<String, ?> model, ByteBuf buffer, NestedRenderer nestedRenderer) {
    @SuppressWarnings("unchecked")
    Map<String, Object> modelTyped = (Map<String, Object>) model;
    TemplateModel templateModel = new MapBackedTemplateModel(modelTyped);
    DefaultTemplateScript script = DefaultGroovyMethods.newInstance(templateClass, new Object[]{templateModel, buffer, nestedRenderer});

    try {
      script.run();
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of ratpack.groovy.templating.TemplateModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.