Which Java MVC frameworks integrate easily with StringTemplate? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T11:34:45Zhttp://stackoverflow.com/feeds/question/488930http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/488930/which-java-mvc-frameworks-integrate-easily-with-stringtemplate3Which Java MVC frameworks integrate easily with StringTemplate?Daniel Jomphe2009-01-28T19:11:32Z2009-10-21T12:09:02Z
<p>It's hard to see how <em>StringTemplate</em> integrates easily (or not) with <em>popular</em> Java web MVC frameworks.</p>
<p><strong>Which Java MVC frameworks integrate easily with StringTemplate?</strong></p>
<p>A good answer:</p>
<ul>
<li>mentions <strong>one solution</strong> to integrate with a framework,</li>
<li>includes a <strong>link</strong> to something useful and applicable, like:
<ul>
<li>a <strong>tutorial</strong>,</li>
<li>or <strong>documentation</strong>,</li>
<li>or a reference to <strong>source code</strong>:
<ul>
<li><strong>free</strong>,</li>
<li>and <strong>open source</strong> or <strong>public domain</strong>.</li>
</ul></li>
</ul></li>
</ul>
<p><strong>Readers/Voters</strong>, please vote for a solution if you know it's true and great.</p>
<p>In the scope of this question, I am <em>not interested in any other templating engine than StringTemplate</em>.</p>
http://stackoverflow.com/questions/488930/which-java-mvc-frameworks-integrate-easily-with-stringtemplate/489486#4894862Answer by yawmark for Which Java MVC frameworks integrate easily with StringTemplate?yawmark2009-01-28T21:34:28Z2009-01-28T21:34:28Z<p>A quick search led me to this <a href="http://jira.springframework.org/browse/SPR-3266" rel="nofollow">demonstration of using StringTemplate for a Spring view</a>. </p>
http://stackoverflow.com/questions/488930/which-java-mvc-frameworks-integrate-easily-with-stringtemplate/489564#4895644Answer by Jeff for Which Java MVC frameworks integrate easily with StringTemplate?Jeff2009-01-28T21:54:09Z2009-01-29T00:53:25Z<p>I've gotten StringTemplate to work with Spring. Basically, all it took was a custom view.</p>
<p>But first, a disclaimer: This is an experimental hack. I've never used this in production code, and it could use some improvement before that happens. I think it is adequate to answer your question about how easily StringTemplate integrates with a Web MVC framework, however.</p>
<p>Reference: <a href="http://static.springframework.org/spring/docs/2.5.x/reference/mvc.html" rel="nofollow">Spring Web MVC documentation</a></p>
<p>StringTemplateView.java:</p>
<pre><code>import java.io.PrintWriter;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.antlr.stringtemplate.StringTemplate;
import org.antlr.stringtemplate.StringTemplateGroup;
import org.springframework.core.io.Resource;
import org.springframework.web.servlet.view.InternalResourceView;
public class StringTemplateView extends InternalResourceView {
@Override
protected void renderMergedOutputModel(Map model, HttpServletRequest request,
HttpServletResponse response) throws Exception {
// Provides a Spring resource descriptor referring to the .st file
Resource templateFile = getApplicationContext().getResource(getUrl());
// Kind of redundant...
StringTemplateGroup group = new StringTemplateGroup("group", templateFile.getFile().getParent());
StringTemplate template = group.getInstanceOf(getBeanName());
template.setAttributes(model);
// Output to client
PrintWriter writer = response.getWriter();
writer.print(template);
writer.flush();
writer.close();
}
}
</code></pre>
<p>And an example view resolver definition:</p>
<pre><code><bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="myapp.web.view.StringTemplateView"/>
<property name="prefix" value="/WEB-INF/st-views/"/>
<property name="suffix" value=".st"/>
</bean>
</code></pre>
http://stackoverflow.com/questions/488930/which-java-mvc-frameworks-integrate-easily-with-stringtemplate/773321#7733210Answer by Daniel Jomphe for Which Java MVC frameworks integrate easily with StringTemplate?Daniel Jomphe2009-04-21T15:51:57Z2009-04-21T15:51:57Z<p>A certain Harry Karamidas <a href="http://www.stringtemplate.org/share/list" rel="nofollow">shared</a>, in December 2008, a <strong>Struts</strong> adapter on ST's official site. <a href="http://www.stringtemplate.org/share/1229347891527/st%5Fstruts%5Fadapter%5Fwith%5Fdemo.0.2.zip" rel="nofollow">Direct link</a> to the zip file.</p>
http://stackoverflow.com/questions/488930/which-java-mvc-frameworks-integrate-easily-with-stringtemplate/1600411#16004111Answer by Florin for Which Java MVC frameworks integrate easily with StringTemplate?Florin2009-10-21T12:09:02Z2009-10-21T12:09:02Z<p>The open source Java WEB framework <a href="http://code.google.com/p/jpublish/" rel="nofollow">JPublish</a>, works very well with ST. By following the link above, you'll find there the following:</p>
<ul>
<li>a JPublish framework user guide</li>
<li>a practical demo (downloadable from Google code ~5.7MB) showing you how to use ST from JPublish. You'll realize how easy it is.</li>
</ul>
<p>Have fun,</p>