org.springframework.scripting.support.StandardScriptEvalException Java Examples
The following examples show how to use
org.springframework.scripting.support.StandardScriptEvalException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ScriptTemplateView.java From lams with GNU General Public License v2.0 | 6 votes |
@Override protected void renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request, HttpServletResponse response) throws Exception { try { ScriptEngine engine = getEngine(); Invocable invocable = (Invocable) engine; String url = getUrl(); String template = getTemplate(url); Object html; if (this.renderObject != null) { Object thiz = engine.eval(this.renderObject); html = invocable.invokeMethod(thiz, this.renderFunction, template, model, url); } else { html = invocable.invokeFunction(this.renderFunction, template, model, url); } response.getWriter().write(String.valueOf(html)); } catch (ScriptException ex) { throw new ServletException("Failed to render script template", new StandardScriptEvalException(ex)); } }
Example #2
Source File: ScriptTemplateView.java From spring4-understanding with Apache License 2.0 | 6 votes |
@Override protected void renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request, HttpServletResponse response) throws Exception { try { ScriptEngine engine = getEngine(); Invocable invocable = (Invocable) engine; String url = getUrl(); String template = getTemplate(url); Object html; if (this.renderObject != null) { Object thiz = engine.eval(this.renderObject); html = invocable.invokeMethod(thiz, this.renderFunction, template, model, url); } else { html = invocable.invokeFunction(this.renderFunction, template, model, url); } response.getWriter().write(String.valueOf(html)); } catch (ScriptException ex) { throw new ServletException("Failed to render script template", new StandardScriptEvalException(ex)); } }