Tagged Questions
1
vote
0answers
152 views
Struts2 tags are not working in Velocity templates
I am using struts2 with Apache Tiles2 and Velocity templates in my webapp.
The problem I am getting is that struts2 tags are not evaluating in velocity templates only when I use velocity with tiles.
...
1
vote
0answers
144 views
Struts2 with Velocity and Tiles
I am developing a web application on Struts2. For front end development I have decided to use Velocity with Tiles. I have found Velocity and Tiles plugins for Struts2 but haven't found any related ...
0
votes
1answer
121 views
Why this error comes in struts2 org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'template.vm'
I am using Apache Velocity template engine for my web application html email utility.
But the major problem i am facing is the resource path.
I am using struts2 for my web application(Struts2 maven ...
0
votes
0answers
99 views
Struts2 Velocity - Unable to find resource
I've problem, my struts2 application don't found my templates.
This is my configuration into struts.xml
<constant name="struts.convention.result.path" ...
0
votes
0answers
153 views
How to handle response of velocity template?
I want to use java and get what velocity template generates as output which is
written in response.getWriter(), so that i can process it for some custom
validation.
How should i do it?
In struts we ...
1
vote
1answer
932 views
Converting velocity response to JSON
I am using struts 2 and velocity templates to generate JSON response.
Now the catch is the response is not generated using some velocity JSON plugin
it's just a String that comes out once velocity is ...
1
vote
2answers
272 views
Removing Hardcoding of XML elements from Struts action class
In my application I am using struts 2. we are sending an AJAX call using jQuery. I am formatting the XML data in Struts 2 action class and sending that as XML response to to AJAX request. I am ...
1
vote
1answer
637 views
Alternatives to Struts-Menu for Menus in Struts 2.X Application
Per user feedback, I am opening a new question for this topic.
So I am currently using Struts-Menu to handle my menu needs for my Struts 2 J2EE application. It is not necessarily a package I wish to ...
0
votes
1answer
422 views
check the text in a Apache Velocity (.vm file) using java
#set ($collegename = $parameters.get('collegename'))
when i print $collegename in vm file. it show college's names in some rows.
there are 20 college's names.
i want to put a condition on a ...
12
votes
5answers
5k views
Why should I learn and use struts?
I'm a java developer, not seasoned, but I am familiar with most concepts reasonably well.
I recently built a website using Tomcat/JSP (~30 dynamic pages). I made the newbie mistake of including large ...
0
votes
1answer
528 views
Sitemesh + Struts2 + Velocity: Decorators cannot access the context's objects
I have a struts2 web app using velocity. I am integrating Sitemesh to the project.
The decorators are called properly but for some reasons, the objects placed in the context via the toolbox ...
1
vote
2answers
849 views
BigDecimal evaluated as a string in Velocity, Struts2
I am using struts2 with Velocity 1.5 and Velocity Tools 1.3. In my template I want to do a loop like:
#set ($count = ${item.qty})
#foreach($i in [1..$count])
${item.price}
...........
#end
...
1
vote
1answer
513 views
How to get data from the velocity page in a action class?
How to get data from the velocity page in a action class?
3
votes
1answer
1k views
Struts 2 + tiles + velocity interoperability?
Has anyone been able to get velocity + tiles working with struts 2?
I am having some problem finding examples or tutorials online and from what I have gathered from mailing lists it seems it might ...