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 ...
0
votes
0answers
20 views
How to choose a template engine for a greenfield Spring MVC project?
We have a new team of devs coming from .NET who are doing a greenfield Spring MVC project.
I'm looking at Velocity, FreeMarker and Thymeleaf right now but they look so complicated. All developers are ...
0
votes
1answer
33 views
Freemarker, PDF, Header/Footer and page-breaks
A common use of Freemarker is the generation of a PDF.
Unfortunally I have to generate a pdf with a lot of pages and "they" asking me to put an header with some information and a footer with ...
0
votes
0answers
13 views
Apache Tiles integration with Restlet
I am trying to integrate Apache Tiles with Restlet 2.0+. In addition I want to use freemarker as a template language within Apache Tiles. I am looking some pointers (blog, source code etc) showing ...
0
votes
1answer
36 views
freemarker.template.TemplateException: Expected hash
I am trying to generate a Freemarker template, but I get:
freemarker.template.TemplateException: Expected hash. ul evaluated instead to
freemarker.template.SimpleSequence on line 105, column 40
...
0
votes
1answer
23 views
Freemarker template to generate java code, and Reverse
I've started to learn some template engines for Java, and have choosen Freemarker as the starting one. Got the following question...
Having a template and a Pojo, generating an output, is it possible ...
0
votes
1answer
55 views
change selected option of dropDown using pure javaScript
I have a dropdown on change a popup appears with a warning that change the value will do some affects. when user select no the dropdown selected index is supposed to return to initial selected option. ...
1
vote
1answer
27 views
Freemarker : OSGI Bundle Exception
I am very new to OSGI. I am trying to add a new library, FreeMarker to an existing application which uses Spring 3. We are using Equinox. Below are the changes I made,
Added Freemarker dependency in ...
0
votes
1answer
38 views
What is the equivalent of PHP's print_r() in FreeMarker Template Engine?
For debugging purposes, I want to be able to get a representation of an entire object passed as a parameter to a macro.
Thanks
1
vote
0answers
68 views
Which is the best way to java code generation using ftl?
I´m writing to ask some advice about code generation
I have a Struts2 datagrid which use the dependency injection pattern. To edit the grid I have to insert the field in the view and add it to the ...
0
votes
1answer
38 views
Is there any limit on the amount of data Freemarker can render?
I am using Freemarker with Stripes. In one of the cases where I have a table to render which has 17 columns and some 13-15 rows, the whole of it is not getting rendered at once. There is no ...
1
vote
1answer
68 views
Replace new line character in freemarker
Is there any way to replace the new line character on free marker? I am trying this:
<#assign str = str?replace("(\r\n)+", "</p><p>")>
wich worked on java, but not in freemarker. ...
0
votes
1answer
34 views
Java - refresh opened html page from application
I have an application that creates a html page from app (I use freemarker). After that, I open the generated webpage from application using Desktop like this:
public void openPage() {
if ...
0
votes
1answer
49 views
Freemarker Template Data Binding in jbpm
I am writing my task-forms of JBPM5.4 in freemarker. My question is that it would be possible that pojos are initialized on the server side when html form is submitted like facility available in ...
0
votes
0answers
19 views
How to define MyTempateLoader to change the Include tage function in FreeMark
as follow XML
<sql-query name="selectUserFromAccessGroupByPage">
<sql>
<![CDATA[
SELECT id, email, login_name
FROM ...
0
votes
0answers
111 views
Processing struts2 tags in freemarker templates
I have a requirement to process freemarker ftl file on server side and return back the HTML to the client. I would like to know if it is possible to process freemaker template having struts tags in ...
1
vote
1answer
53 views
Freemarker macros. Hot to call them with map parameters?
I have been strolling around with this but couldn't find any documentation or example code.
Introduction:
I have an ftl page that has this key/value map:
roomType.description["ES"] = "texto"
...
2
votes
2answers
76 views
How to iterate over a vector in freemarker?
I have an Object with a string vector as one of its attributes in the ftl. I have to use the if condition and enter a specfic block only when the vector contains some dynamic variable(available in the ...
0
votes
1answer
41 views
Firefox doesn't recognise media queries
I have a small template written in FreeMarker template language. I have the following piece of css in it:
<style type="text/css">
@media print {
@page {
size: landscape;
}
}
...
1
vote
1answer
40 views
Convert JS logic into FTL
i have a JS code which i want to convert on FTL so that users couldnt view the logic behind it. Is this possible?
I'm thiking of using <#if> and <#assign> for the logic but dont know how to ...
0
votes
1answer
31 views
Is it possible to retrieve a Freemarker parameter value in a directive?
I am having something similar to the following in one of my templates:
<#assign myVar = ${myValue}-1>
but Freemarker is not happy and gives me:
Exception in thread "main" ...
0
votes
0answers
55 views
Error message is not displayed in freemarker template for file field in Spring application
I have a wierd situation. I have this form that I need to validate on:
<form id="uploadForm" action="#" method="POST" enctype="multipart/form-data">
<div class="instruction ...
0
votes
0answers
52 views
Spring Webflow: logout
I am using Webflow 2.3.0.RELEASE and Spring 3.1.2.RELEASE with Spring security and Freemarker.
It all works well except that when I logout the session is not destroyed.
e.g. when I click the logout ...
1
vote
0answers
47 views
Removing duplicates in Lithium/Freemarker
I am using Lithium custom components to create a list of users who have written the most Blog articles. I have a list of users who have written a blog article and then made a rest call to get the ...
0
votes
1answer
61 views
IntelliJ not recognizing a particular file correctly, instead its stuck as a text file
There is a freemarker file (ftl) in my IntelliJ project that is incorrectly recognized as a text file. There are many of the same type that are correct. I am aware of the "Mark as text" option. This ...
0
votes
1answer
61 views
JSTL error in freemarker template
I am trying to implement JSTL in Freemarker template. To do that, I got a sample freemarker template example and tried to incorporate JSTL namespace and trying to execute it.
Here is how my code ...
1
vote
0answers
34 views
Freemarker doesn't work in StrutsSpringTestCase
Basically, I'm trying to run a simple unit test but cannot make it work when I use freemarker as the result type. Other types like jsp or redirectAction worked fine. What am I missing?
...
-2
votes
1answer
51 views
Use JSP custom tags in a freemarker template production static page freemarker.template.TemplateModelException [closed]
Could not find an instance of freemarker.ext.servlet.ServletContextHashModel in the data model under either the name __FreeMarkerServlet.Application__ or Application
0
votes
1answer
78 views
Resources in JAR not properly resolved within IntelliJ
I have a freemarker ftl template file which is included for taglibs in an IntelliJ project. The problem is that JspTaglibs is not resolved within IntelliJ. The error highlights the text JspTaglibs and ...
0
votes
1answer
63 views
How to access a file in the .war classpath during unit tests?
I have a web application project, and I'm trying to unit test a method that creates a file using a FreeMarker template. My method createFile() should take a MyFile type - that contains the File name ...
0
votes
1answer
144 views
Spring MVC Default View Resolver Not Working?
I would like any requests that do not resolve to specific controller mappings to go to a view with a name derived from the request path.
Eg localhost/success should end up rendering a view located at ...
0
votes
1answer
95 views
Enum-based Radio Buttons in Freemarker backed by Spring MVC
Is it possible to output a list of radio buttons in Freemarker using the Sping MVC JSP tag-Freemarker macros, based on the Enum type of a bound property? I gather this is possible using the ...
0
votes
1answer
103 views
How to pass freemarker email template as email in Liferay?
I have used Freemarker for creating a template which I will be using to send as email.
Here is the snippet of the parameters that i wish to include in the template.
Iam using java..
//use freemarker
...
1
vote
1answer
146 views
How to read checkbox/radio value in freemarker?
I'm working with share forms in alfresco and trying to read the values of ticked checkboxes and checked radio buttons form a form. I extended both the user creation and userprofile form with these ...
0
votes
2answers
36 views
Not able to locate Freemarker Template In Liferay
I am using Liferay for developing my application and want to use freemarker to develop template.
I was just testing freemarker.
When I deploy my application, it says that Template cannot be found.
I ...
0
votes
0answers
92 views
Struts 1.x to Spring Migration Error
We are trying to migrate our application from struts to spring. We are
getting the following error. We are unable to display the logon.jsp page due to errors in freemarker files.Please suggest the ...
1
vote
1answer
91 views
Freemarker template loading
In my application, all freemarker templates are in /templates/ftl/ so during the application deployment I load a class I call one class that extends FreemarkerManager and has a method
Configuration ...
0
votes
1answer
50 views
Why is this freemarker code failing when there is a comma in the list?
I have a map that contains a list (all the values in the list are strings):
["diameter":["1", "2", "3"]]
["length":["2", "3", "4"]]
I iterate through it in freemarker:
<#list ...
3
votes
2answers
94 views
FreeMarker: keep identation when using macros
i'm using the FreeMarker template engine to generate some php classes from an abstract description of a webservice. My problem is, when i call a macro in a FreeMarker template, the macro inserts the ...
1
vote
1answer
83 views
Jquery id into a javascript array with a freemarker list
Im generating some pictures dynamically:
<#list content.templates as template>
<td>
<img class="event_template" title="${template.getTemplateName()}" ...
0
votes
1answer
19 views
Named scopes in templates
Is it possible to name some blocks inside ftl and get them on java side? For example something like with incrorrect syntax maybe
#emailSubject[
This is email subject]
#emailMessage
[Email multi-
line ...
1
vote
1answer
45 views
<#assign x=${size}> it does not give the right result
<#assign x=${size}>
in ftl file above code does not give x the value of the size template from java fikle, how can i get the value of size equal to my variable x?
0
votes
1answer
95 views
Eclipse/Freemarker plugin: syntax highlighting failure
I have the JBoss Freemarker IDE installed in Eclipse/Indigo. For the first .ftl I created the syntax highlighting/parsing works fine. But when I copied this to create new .flt syntax ...
0
votes
2answers
182 views
How can I use Freemarker to show the List<Map<String,Object>> data?
I put two Map objects in an ArrayList, and I want to show the different data based on the index of the arraylist, the java code is as follows:
List<Map<String, Object>> value = new ...
2
votes
2answers
137 views
freemarker template for loop statement
I want to create for statement in freemarker template. I am reading howto http://freemarker.sourceforge.net/ but there is just list. How can i create for statement or foreach.
parameter.put("size", ...
1
vote
1answer
55 views
free marker template how to use for statement in double HashMap
In free marker template i want to print HashMap in HashMap. Is this possible?
I try with
<#list capitalList?keys as key>
${key} = ${capitalList[key]}
</#list>
but this not ...
0
votes
0answers
48 views
Netbeans freeMarker install
I use Netbeans and i need to install de freeMarker plugin but I don't know how.I searched the Internet and I found guides for Eclipse,not for NeatBeans.Any help is welcomed.
0
votes
1answer
78 views
Invalid Reference Exception while accessing nested map in freemarker
I have nested map.
Map<String, Map<String, Long>> domains;
When I access it in following manner I get InvalidReferenceException
<#list somelist as item>
<#list ...
1
vote
0answers
65 views
Mapping FTL items to html items
I have a Java EE application where I use a ftl template to generate a data grid. below is the grid template.
<tr id="_gridRow_3345${item.id}"" onclick="gridRowClick(${item.id?c},this); return ...
1
vote
2answers
954 views
Looking for a sample java web application [closed]
I am looking for a sample Java web application that uses Servlet/JSP(or FreeMarker or Velocity). It should be moderated small, but definitely not a Hello World or something like that. I hope it could ...
2
votes
2answers
196 views
How to access a Spring application property in a Freemarker template?
I have Java webapp that uses Spring 3.1, with Freemarker templates for rendering the view. I want to conditionally display a link in the view, based on the true/false value of a particular application ...



