Package mitza.dynamic.compile

Examples of mitza.dynamic.compile.Executable


  public void doTag() throws JspException {
    try {
      log.debug("componentUri={}, componentTemplateUri={}", componentUri, componentTemplateUri);

      DcpClassLoader loader = new DcpClassLoader(componentUri, componentTemplateUri);
      Executable dcpExecutable = loader.getExecutable();
      log.debug("Got Executable '{}'", dcpExecutable);
      String result = dcpExecutable.execute();

      JspContext context = getJspContext();
      JspWriter out = context.getOut();
      out.write(result);
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of mitza.dynamic.compile.Executable

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.