Tagged Questions
Freemarker is a Java based template engine, a generic tool to generate text output (anything from HTML to autogenerated source code) based on templates. It's a Java package, a class library for Java programmers. It's not an application for end-users in itself, but something that programmers can embed into their products.
35
votes
21answers
10k views
Suggestions for a Java-based templating engine?
Do you know a better template engine than FreeMaker or Velocity?
22
votes
11answers
11k views
Template Engines for Spring Framework
I've taken quite a shine to the Spring Framework and would like to get into it a bit more. I have noticed that aside from plain vanilla JSPs there are various template engines for use with Spring MVC, ...
13
votes
2answers
1k views
What are the main differences between StringTemplate and FreeMarker?
The net seems to be full of comparisons between Velocity and FreeMarker, and they seem to be reasonably equivalent. But there seems to be almost no comparisons between StringTemplate and FreeMarker!
...
11
votes
2answers
933 views
Template engine for Google App Engine
Can you recommend a template engine for GAE?
I like Wicket, but it carries a lot of server-side state, which is something that is not very compatible with the GAE approach.
Is FreeMarker supported on ...
11
votes
5answers
4k views
Velocity vs. FreeMarker
Velocity or FreeMarker?
They look pretty much the same, even the syntax?
What to use? Or when to use what?
10
votes
2answers
11k views
Freemarker iterating over hash map keys
Freemarker has two collection datatypes, lists and hashmaps
Is there a way to iterate over hashmap keys just as we do with lists?
so if i have a var with data lets say
user : {
name : "user"
...
8
votes
4answers
2k views
Why would I use a templating engine? jsp include and jstl vs tiles, freemarker, velocity, sitemesh
I'm about to choose to way to organize my view (with spring-mvc, but that should matter much)
There are 6 options as far as I see (though they are not mutually exclusive):
tiles
sitemesh
freemarker
...
8
votes
3answers
6k views
How do I call java methods on an object from a FreeMarker template?
Is it possible to call a method that takes parameters from a Freemarker template?
I have an object model that I'm trying to render with Freemarker into a web page. One of the objects has a method to ...
7
votes
4answers
1k views
best template engine in java
I am looking for a template engine with iteration, bifurcation, markup alike and that takes a string for template input rather a file.
That's because I have my own way to supply the input template, ...
7
votes
2answers
14k views
How to check if a variable exists in a FreeMarker template?
I have a Freemarker template which contains a bunch of placeholders for which values are supplied when the template is processed. I want to conditionally include part of the template if the userName ...
7
votes
1answer
8k views
Getting template text from FreeMarker in Spring app
In my Spring app, I'd like to use FreeMarker to generate the text of emails that will be sent by my application. The generated text will never be returned to the view so I don't need to configure a ...
6
votes
4answers
2k views
Freemarker vs. Velocity
I'm trying to decide between Freemarker and Velocity to use as a template engine, any advantages/disadvantages you see regarding each?
Any alternatives that I should look at instead?
6
votes
1answer
2k views
How to get the request context in a freemaker template in spring
How to get the request context path in freemarker template when using with spring.
My view resolver is like this
<bean id="freeMarkerViewResolver" ...
5
votes
1answer
176 views
Switch over enum in freemarker
I thought that switching over an enum would be something very basic in FreeMarker, so that I could write something like:
<!-- Doesn't work -->
Dear
<#switch gender>
<#case MALE>
...
4
votes
1answer
859 views
How do I use a template code generator (eg freemarker) in Maven?
How would you structure Freemarker (or an alternative) as a templating code generator into a Maven project? I'm pretty new to Maven and would appreciate some help.
I want to generate some code from ...
4
votes
2answers
1k views
How to change name of Hibernate Tools reverse engineerd DAO class?
So im trying to use Hibernate Tools to reverse engineer my database and I am just getting into using Freemarker templates to weak the code it generates. The problem is I want to change the name of the ...
4
votes
2answers
2k views
Load FreeMarker templates from database
I would like to store my FreeMarker templates in a database table that looks something like:
template_name | template_content
---------------------------------
hello |Hello ${user}
goodbye ...
4
votes
3answers
1k views
tiles in struts project - better than freemarker?
I want to use a template engine in a struts application and would like to know if using TILES can be recommended instead of FREEMARKER or VELOCITY.
3
votes
0answers
64 views
Intermittent Freemarker Template Exception, seemingly when under load
We've just rolled out some changes to our application and we experienced some Freemarker exceptions intermittently this morning.
Our Freemarker template called monitoring.ftl includes header.ftl ...
3
votes
1answer
100 views
How to do Pagination using Freemarker and Spring?
I have a Freemarker template displaying a list of things, now I want to add some pagination.
I have changed the server-side code so that I can put into the backing form the page number (default 1) ...
3
votes
0answers
357 views
How to configure Struts 2 to find 'action results' from both classpath and WEB-INF?
Background
We have an existing webapp, built with Struts 2 and Freemarker, of which I’ve created a variation by copying some of the code and templates. Kludgy, but manageable. We will however soon ...
3
votes
2answers
459 views
How to access Spring RequestContext from a Freemarker TemplateDirectiveModel
I'm using Spring MVC with Freemarker as view technologie. I have a TemplateDirectiveModel object which needs to access Spring's RequestContext within the execute method. Currently I do it like this:
...
3
votes
1answer
231 views
Use Java Properties in Freemarker
HI,
I have a typical messages.properties file in my application.
I'm trying to generate an email using Freemarker.
The Freemarker template should generate to a String, after which I'll send the ...
3
votes
1answer
1k views
Freemarker: How to iterate through the Map using enums as keys
The following code does not work because Freemarker seems to cast the value of the expression inside [] to String and then to use it as a key, which is not what is actually expected.
Preparing a ...
3
votes
2answers
503 views
freemarker cannot handle request for '/' on google app engine
I'm trying to get freemarker working under Google App Engine. I've gotten simple ftl template files working when requested directly however I'd like to have index.ftl work if available otherwise ...
3
votes
1answer
1k views
A url resource that is a dot (%2E)
I have a resource that is a .
This means my url looks like this:
http://myapp/index/.
And i need to add query parameters so that it looks like this:
http://myapp/index/.?type=xml
I use Freemarker for ...
3
votes
2answers
669 views
Using JAX-RS / Jersey with Freemarker templates
There are examples on the web showing how to use the JAX-RS implementation Jersey with custom template engines like FreeMarker. But these examples are looking a bit improvised or dated. There is also ...
3
votes
1answer
798 views
3
votes
1answer
3k views
Multiple View resolvers in spring mvc
I want to use multiple view resolvers in my web app based on spring mvc
Can anyone tell me how do I achieve that.
I want to use both JSP and freemarker in my app.
Please suggest some approaches or ...
3
votes
3answers
2k views
Default escaping in Freemarker
In Freemarker templates we can use the escape directive to automatically apply an escaping to all interpolations inside the included block:
<#escape x as x?html>
<#-- name is escaped as ...
3
votes
2answers
720 views
Sandboxing Java / Groovy / Freemarker Code - Preventing execution of specific methods
I'm developing a system that allows developers to upload custom groovy scripts and freemarker templates.
I can provide a certain level of security at a very high level with the default Java security ...
3
votes
6answers
3k views
Alternating table row colors in freemarker
What's a good, simple way to have alternate row coloring with freemarker?
Is this really the best way?
<#assign row=0>
<#list items as item>
<#if (row % 2) == 0>
...
2
votes
2answers
30 views
Representation of nulls in Freemarker with Spring Framework
I'm developing an application based on Spring Framerwork. As a view technology I use integrated with the framework Freemarker. Problems occur when java bean that stores data for vizualization have a ...
2
votes
0answers
25 views
Migrating from JSP to Freemarker
I'm working on a Spring 2.5 project where four different webapps have duplicate JSPs (they were all derivations of the same webapp). I want to introduce Freemarker so I can externalize and reuse ...
2
votes
1answer
79 views
How to get a substring in some length for special chars like Chinese
For example, I can get 80 chars with {description?substring(0, 80)} if description is in English, but for Chinese chars, I can get only about 10 chars, and there is a garbage char at the end always.
...
2
votes
1answer
68 views
How to use Integer in freemarker template?
Yesterday, when I attempted to get a variable value from action,
if I set the variable's which defined in ftl value up to below ten , the result always got empty.
<input type="hidden" ...
2
votes
1answer
210 views
How to specify default value for form input using Spring and Freemarker
I am using Spring MVC and Freemarker.
I have created a form and I want to put a default value into a formInput
<@spring.formInput 'search.value' ''/>
But the documentation is a bit weak and ...
2
votes
3answers
167 views
How do I do substitutions for localised strings in freemarker
I'm using spring and freemarker and have the basics working.
I've got a properties file like
help.text=For further information please see the <a href="{0}">help page</a>.
I'm currently ...
2
votes
1answer
130 views
Add freemarker macro in jar library
How can I add some freemarker macro (<#macro myMacro>...) in java jar library and after than use it (<@macro myMacro/>) in my other web projects?
2
votes
5answers
444 views
How to sort the values of a HashMap freemarker template
I have in java this HashMap:
HashMap<String, String> map = new HashMap<String, String>();
map.put("k1", "3");
map.put("k2", "4");
map.put("k3", "2");
map.put("k4", ...
2
votes
1answer
123 views
Can Freemarker be used with Struts 1.1?
I'm working on a web applications that uses Struts 1.1 and tiles with jsps. I'd like to introduce some freemarker templates.
I know this is possible with Struts 2, but can you use freemarker with ...
2
votes
3answers
216 views
Render List returned via JQuery
On the server side, I have a list into a bean.
On the Client side, I use:
function callJava() {
$.getJSON("../reference/test", { name: $('#name').val()}, function(result) {
...
2
votes
1answer
262 views
Using Freemarker with Restlet 2.0 in a J2EE server
I'm a bit confused with what is written in the documentation(s) for Freemarker and Restlet's freemarker extension.
Here's the situation: The restlet engine serves an HTML representation of a resource ...
2
votes
4answers
847 views
Dynamic Tables with Struts 2
What would be the best way to create a dynamic HTML table using the JQuery plugin? What I want to do is be able to pull data from my action class and be able to perform CRUD operations on that data ...
2
votes
5answers
590 views
How to output ${expression} in Freemarker without it being interpreted?
I'm trying to use Freemarker in conjunction with jQuery Templates.
Both frameworks use dollar sign/curly brackets to identify expressions for substitution (or as they're called in freemarker, ...
2
votes
2answers
483 views
Freemarker function with parameter that can be empty
I created function in Freemarker:
<#function formatDate anyDate>
<#assign dateFormat = read_from_configuration() />
<#if anyDate??>
<#return anyDate?date(dateFormat) />
...
2
votes
1answer
364 views
Servlet context injection fail while using jersey test framework
I'm beginning with jersey and trying to get freemarker working with it using TDD. I want to make a ViewProcessor for my templates, but fail to inject the servlet context in the class ...
Here is the ...
2
votes
1answer
2k views
howto display validation errors in freemarker template
all approches i do to display my validation errors in a freemarker template fail. i use spring mvc version 3.
My form looks like that
<@layout.basic>
<@spring.bind "user" />
<#if ...
2
votes
1answer
2k views
Freemarker assign list length to local variable
The following freemarker code causes an exception
<#assign i= it.getList().size()>
<#list it.getList() as elem>
<#if i==1>
<li>${elem.name}</li>
...
2
votes
3answers
1k views
How should I initialize class freemarker.template.Configuration?
Attempting to follow this Java tutorial.
About 63 pages in, you are instructed how to create a form ("New.jsp") to submit new events.
When I try to visit the page, I get the following error:
HTTP ...