Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications.
33
votes
4answers
1k views
Struts2 + Spring Security 2.06: Valuestack is null when attempting to use @Secured on an Action method
Before I begin, I've to say the closest answer I've found is here but honestly I don't really understand what's going on there.
I'm using Struts2 + Spring Security 2.06 with a custom authentication ...
26
votes
4answers
16k views
Maven 3 Artifact problem
I made a new struts project in eclipse using the struts2-archtype-starter.
A few errors where in my project already before doing anything. Solved most of them but there is 1 the still give me some ...
16
votes
7answers
16k views
Struts 2 or JSF? [closed]
I am just starting with web application. Which framework should I try : struts 2 jsf? Both seem pretty good.
16
votes
5answers
3k views
Hidden features of Struts 2 framework [closed]
What are the lesser-known but useful features of the Struts 2 framework?
Try to limit answers to Struts 2 framework as it is way too different from the previous versions.
One feature per answer.
16
votes
5answers
20k views
Struts2 vs Spring 3
Does anyone know difference between Struts2 and Spring 3 MVC. I know the difference between Struts 1 and Spring 2.5, but whats the advantage Struts2 has over Spring 3 or otherwise.
I tried looking ...
13
votes
2answers
21k views
Download a file by jQuery.Ajax
I have a Struts2 action in the server side for file downloading.
<action name="download" class="com.xxx.DownAction">
<result name="success" type="stream">
<param ...
12
votes
3answers
34k views
Struts2 - How to do dynamic URL redirects?
I'm trying to have my struts2 app redirect to a generated url. In this case, I want the url to use the current date, or a date I looked up in a database. So /section/document becomes ...
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 ...
12
votes
5answers
3k views
Slow to start after upgraded to Spring 3
I use Struts2 and my application has thousands of action classes managed by Spring. I used Spring 2.5.6 before and my application starts quickly. But when I changed Spring to 3.0. I got a extremely ...
11
votes
4answers
1k views
OSGi - How mature is this technology?
I have a requirement where I need to share some web resources (jsp, html, js, images, css etc.) across different Spring based Struts 2 applications. And seems like OSGi can be used to achieve this?
...
9
votes
1answer
16k views
Getting a 'No thread-bound request found' error from spring in my web app
I'm getting a 'No thread-bound request found' error in my web app and hoping to get some help.
I'm trying to use struts2 + spring + hibernate, and use spring to manage the hibernate session factory, ...
9
votes
4answers
18k views
difference between Struts 1.x and Struts 2.x
i want to know difference between Struts 1.x and Struts 2.x
9
votes
2answers
4k views
Whats The difference between # , % and $ signs in Struts Tags?
I'm working with Struts2 and when I'm accessing value stack variables I don't know whether to use % or # or $. I try all of them until I find the correct one.
Can Anybody Explain what is the ...
9
votes
4answers
15k views
Format number in Struts 2 <s:property/> tag
I would like to format number displayed by <s:property value="summary.total"/> tag in Struts 2. There is a double value. How can I do that? Should I use OGNL?
Or maybe I must use ...
9
votes
2answers
420 views
How to get Logger value in a string array
I used the log4j.Logger and I have written the log value in to a file using the FileAppender.
Now I want to show the log value in a textarea. How can I assign the logger value to an array of Strings?
...
9
votes
1answer
567 views
what's the difference between #{} ${} and %{}?
I've been working with struts2 for almost a month now, and I just don't grok what the difference is between ${var}, #{var}, and %{var} are they different scopes? what are they?
I found an example of ...
9
votes
3answers
15k views
Filters vs Interceptors in Struts 2
What's the difference, really, between filters and interceptors? I realize that interceptors fire before and after an action, recursively, and filters can be configured to fire on actions and on ...
9
votes
5answers
20k views
struts2 - understanding the value stack
I have a question regarding the struts2 value stack. Let's say I have an Action class called RegisterAction that has an execute method as follows:
public String execute() {
ValueStack stack = ...
9
votes
2answers
2k views
jQuery title bar height affected by floating div
I'm having a very weird jQuery problem.
I have a left nav div with this css:
#nav {
float: left;
width: 25%;
padding: 10px;
margin-top: 1px;
}
I have a body div with this css:
#body {
...
8
votes
1answer
17k views
Received fatal alert: handshake_failure through SSLHandshakeException
I have a problem with authorized SSL connection. I have created Struts Action that connects to external server with Client Authorized SSL certificate. In my Action I am trying to send some data to ...
8
votes
4answers
5k views
How to disable struts 2 Table generation for Form?
Struts 2 automatically generate HTML table for it's <s:form> tag. How can I disable it? Any help will be appreciated. Thank You.
8
votes
6answers
15k views
File download using Java, Struts 2 and AJAX
I want to give file download using java,struts2 and ajax.
On my html page there is a button called "export" clicking on which ajax call will be made which will execute a query and will create .xls ...
8
votes
2answers
681 views
How to deploy war files into cpanel or how to run java application on Cpanel?
I need to run my Java application on cPanel. I do not care if I need to copy the files on the cPanel or deploy my war. (war file is certainly preferred method)
I have found lots of descriptions to ...
8
votes
2answers
3k views
Mapping Struts 2 Exception Handler to an Action
I have Struts 2 configured to redirect any java.lang.Exception to a special Action which logs the exception. My redirection works, but my Action always gets a null exception (even when I explicitly ...
7
votes
5answers
33k views
jQuery multiselect drop down menu
I have a simple html multi select drop down list:
<select id="transactionType" multiple="multiple" size="10">
<option value="ALLOC">ALLOC</option>
<option ...
7
votes
6answers
5k views
Creating New Roles and Permissions Dynamically in Spring Security 3
I am using Spring Security 3 in Struts 2 + Spring IOC project.
I have used Custom Filter, Authentication Provider etc. in my Project.
You can see my security.xml here
<?xml version="1.0" ...
7
votes
3answers
2k views
Deploy Java Web application on Amazon Cloud
I have a web application developed with Struts2, JSP, JPA, Spring and MySql. I want to move this application to Amazon Cloud. I have not done a cloud deployment before or know how to do it.
Can anyone ...
7
votes
5answers
4k views
Which is the best place or book to start learning struts?
I have to start up a project on Warranty Forecasting. My teacher has asked me to learn struts for the same as it will be a full fledged java EE thing. Please suggest me a place where i can learn ...
7
votes
2answers
1k views
Struts2 with Tiles 2.1 or 2.2
there doesn't seem to be a simple way to use Tiles 2.1 or 2.2 with Struts2 with the existing struts2-tiles plugin. I need to use the tiles wildcards functionality in my project where the tiles.xml ...
7
votes
5answers
301 views
How to understand Open Source projects/libraries?
There are few open source projects/APIs/libraries that we use in our project (Spring, Struts, iBatis etc.) and I want to understand their design and how they work internally.
What is the best way to ...
7
votes
4answers
1k views
How to select the right version of spring, struts and hibernate, what's the difference?
I want to select the lastest frameworks to integrate spring, struts and hibernate, but seems that there are so many versions out there, and their api are different too, so I was confused that how can ...
7
votes
3answers
355 views
website email configuration in java using struts
i am using struts 2.0 hibernate 3.0 and tiles 3.0 for my website and i want to send mail to info@shreerajinvestment.com
but i m not able to send mail on that so what i have to do .....
...
7
votes
2answers
515 views
Struts2 UI textarea tag adding “class” attribute fills it self with “class java.util.HashMap” value
This is just a why is something weird happening question.
I made a mistake and was supposed to use "cssClass" but typed "class" instead. However "class" is not defined as a property of the textarea ...
6
votes
2answers
3k views
6
votes
5answers
2k views
Java: How to write “Arabic” in properties file?
I want to write "Arabic" in the message resource bundle (properties) file but when I try to save it I get this error:
"Save couldn't be completed
Some characters cannot be mapped using "ISO-85591-1" ...
6
votes
2answers
2k views
Struts 2 iterate enum
Is it possible in Struts 2 to iterate an enum using the tag s:iterator?
Right now I'm doing it using a list of String, but is it possible to use an enum directly?
Thanks in advance
6
votes
6answers
5k views
struts.xml and struts-config.xml
What is the difference between struts.xml and struts-config.xml? Are both the same or is there any difference between them?
6
votes
2answers
9k views
Struts2 using Map in select tag
You can easily use a List in struts2 select tag, but is there a way to use Map in tag?? If it is possible please provide a sample code...
thanx !
6
votes
1answer
3k views
HTTP Array Parameters with Struts 2 via an Ajax Call
I'm having an issue sending array parameters to a Struts 2 action class. I am using struts 2.1.8.1.
Here is some example code:
public class MyAction extends ActionSupport {
private String[] ...
6
votes
5answers
1k views
Who is using Struts 2 [closed]
Earlier I worked on Struts 1. Struts 2 seems own good design, comparatively fast, fun, and professional. But I could not search who is using Struts 2. Do anyone know which web applications are using ...
6
votes
2answers
2k views
Advantages of OGNL usage over typical EL in Struts2
Say that I don't leverage OGNL to create my Struts2 web application and just purely uses typical el provided by Sun. What would be the downside of it?
As far as I know, OGNL is a kind of expression ...
6
votes
3answers
10k views
How to rewrite URL in Tomcat 6
I'll build a web application and I want to use url rewriting.
In apache this is done with mod_rewrite.
But how can I rewrite urls with Tomcat 6?
I want to use Struts 2 framework.
6
votes
3answers
5k views
Struts 2 & Dojo files are too heavy and affect site's performance.. Any remedies?
Well.. we've developed a j2ee application using struts2 ajax capabilities. We find that the dojo implementation is quite slow. We did the following things:
1. Custom build of the dojo library. ...
6
votes
2answers
5k views
Struts2 JSON Plugin: Adding ActionMessages, ActionErrors, and FieldErrors to response
I am making JQuery Ajax posts and would like any actionmessages, actionerrors, and fielderrors added to in the action back in the response (in JSON format).
I added this result:
<result ...
6
votes
2answers
8k views
Iterate over an HashMap<String, ArrayList<String>> with Struts 2
I am currently facing some difficulties with Struts2 and the s:iterate tag.
I want to display a label, which is the key in the HashMap, followed by a table (the value in the HashMap) containing every ...
6
votes
1answer
12k views
JSTL fmt:message and resource bundle
I want to set the "dir" property of my table from resource bundle based on the locale.
Here is snippet:
<fmt:setBundle basename="class.path.to.resource.bundle"/>
<table ...
6
votes
3answers
9k views
Where to put struts.xml
With Struts2 we have to have struts.xml in the class path, so it no longer works to have it under WEB-INF. So the way I got my project to deploy was to stick it under WEB-INF/classes and have it ...
6
votes
3answers
783 views
Why does ActionSupport implement Serializable
What is the need for Action classes to be serializable? When and how does it happen, if at all.
6
votes
1answer
440 views
Do Struts2 Results annotations override or add to superclass defined values?
The following example: I have a superclass and subclass for a struts action.
The superclass defines @Results, and the subclass needs to define additional specific @Result entries. For example:
...
5
votes
4answers
9k views
why are struts Action classes not thread safe?
I can read in many websites that Struts Action classes are not thread safe . I am not able to understand why this is so .
Also I read a book which says "Struts action classes are cached and reused ...

