Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications.

learn more… | top users | synonyms (1)

4
votes
4answers
11k views

Sessions in struts2 application

I have created a web application in which I need to maintain the session if a user session is there, and then and only then will it allow the user to see the jsp. I have worked with jsp servlets ...
13
votes
2answers
20k 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 ...
1
vote
3answers
1k views

Strut2 - Get Property value in next Action

I am using <s:form action="someAction"> and my struts.xml contains <action name="someAction" class="com.test.testaction.getValue" method="getValuedemo"> <result name="success" ...
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 ...
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.
14
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.
5
votes
2answers
7k views

Struts2 & NetBeans 7

I cannot find anywhere ngbit support for NetBeans 7. I have to install Struts2 for my Web Applications development. For NetBeans 6.9 my older version of ngbit 0.4 works fine, but for NetBeans 7 ...
4
votes
2answers
1k views

How to integrate Struts 2 with Tiles 3

How do we integrate Struts 2 with Tiles 3? The struts2-tiles-plugin currently (2.3.4.1) works with an older version of tiles (version 2.0.6) this can be a bit of a nuisance. This is a self-answer, ...
4
votes
1answer
10k views

Action redirect in struts.xml

Can I redirect to another action from within a struts actions ? So the result of an action is another action i.e - here is a snippet of struts.xml <action name="newRedirect" > ...
1
vote
1answer
3k views

how to open print dialog after pdf generated

I wrote some actions which generates dynamically PDF files. something like: reports/reportGenerator.action when I call reports/reportGenerator?param=dialy it will open the generated pdf in a popup, ...
4
votes
1answer
6k views

Filter mapping for everthing to Struts2 besides one servlet?

I have a Struts2 (2.1.8.1) web application. My web.xml looks like, <filter> <filter-name>struts2</filter-name> ...
5
votes
3answers
4k views

What technologies are best for my application: Struts with Hibernate or Spring with Hibernate

I have a working knowledge of Struts2 and Spring. I want to develop an application that manages information for multiple companies. I am totally confused about what technologies are best for my ...
3
votes
1answer
1k views

Struts 2 “%” sign and '#" sign in OGNL

Anybody can tell me how to use "%" and "#" sign in STRUTS2 OGNL? I google around, but can't find any valuable info about this.Or give me a link of documentation of this. thanks
2
votes
1answer
2k views

How to display image(bolb type) in jsp page from mySql DB in Struts 2 using Hibernate

I am facing one problem, How to display image(bolb type) in jsp page from mySql DB in Struts 2 using Hibernate ?Please share your view.Thanks in advance. public byte[] ...
4
votes
2answers
9k views

How to reload JQuery grid keeping scroll position and collapse elements open

I'm currently working with JQuery plugin for struts2. I would like to know how to reload a JQuery grid without loosing the current scroll position and collapse rows. In order to reload the data in ...
3
votes
3answers
4k views

Problem with Json plugin in Struts 2

I have the following code and I would to achieve functionality that /getJson will return user object as json and /getJson2 will return user2 as Json object. @ParentPackage("json-default") public ...
1
vote
4answers
1k views

Converting Java Object to JSON?

I am using struts2 for Action and jquery for UI ... I want to know how to convert a Map object to JSON object and send it back to UI , Now am able to print it in JSP page the normal java Map object ...
1
vote
1answer
639 views

Unable to get textfield value using jQuery

I have an invoice.jsp page where I have to calculate some value in the textbox using jQuery. In my invoice there is a quantity textbox. If the user enters the quantity then the calculated price ...
0
votes
3answers
382 views

Repopulate an ArrayList from JSP with Struts2

This is the form I am using to repopulate the ArrayList <form method = "POST" action = "addItemsToTemplate"> <s:iterator value = "myQuestions" var = "quizItem" status="key"> ...
0
votes
3answers
388 views

Error : java.util.ConcurrentModificationException

i have a grid from where users select the row , when a row is clicked then its id is sending to my action class AddBookToSession.java and after wards it is returning a list into my jsp page ...
0
votes
2answers
235 views

How to setup an action link to delete the row from the table loaded from the table when using struts2

I want to delete a row persistently from a table stored in the database which is being displayed on the jsp page. I have a link Delete (for each row) to delete the row on a single click. My jsp code ...
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 ...
2
votes
3answers
2k views

Migrating from Struts2 to Spring MVC

Scenario: A fairly mature project uses Struts2 and Spring and Hibernate. I say mature because it has been going on a for a while and there are many struts actions written already. Suppose we wanted ...
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.
5
votes
2answers
7k views

struts2: update second select based on first select value using javascript and jquery

I am working on a struts2 project where I have 3 html select controls each one being dependent on the previous selection. Say the first select is for country, second for state, third for city. The ...
2
votes
1answer
2k views

Struts2 Wildcard action mapping with dummy data

I'm trying to map my struts actions using wildcards. Before, I used UrlRewrite Filter by Tuckey. But this thread changed my mind. So here's my problem: My URL's look like the following: ...
3
votes
2answers
3k views

Java EE - Best way to get real path to uploaded files?

I have a web application with an upload form where users can upload files. I'd like to store the files a folder 'files'. And i'd like this folder to be placed directly under the webapp-root. Using ...
3
votes
5answers
5k views

Can I propagate struts2 ActionErrors between different action classes?

If I have an action where the result is a redirectAction to another action in a different class, is it possible to get validation errors to display in the resulting action? E.g. in the following ...
2
votes
2answers
589 views

Struts2: Updating the values of a “List Of Objects” inside a Map

There is an object ObjectA which has a list of ObjectB. There is a TreeMap inside the ObjectB. This TreeMap has a String as key and a List of another object ObjectC as value. This TreeMap and the list ...
2
votes
2answers
213 views

Passing turkish char from form to java class with struts2

I have a web project on eclipse and I am using struts2. I can pass data from an html form to java class with action like ......test.action?name="şşş"&surname="ıçççç". When I print name and ...
1
vote
2answers
297 views

Passing parameters in url without query string in struts2

I Like to use URLs like host/ActionName/123/abc/, instead of passing query string like host/ActionName?parm1=123&parm2=abc. How can I do that in Struts2? I done as below. but it is not working ...
1
vote
4answers
436 views

struts2 disable validation on page load

I am using xml based validation. Problem: I don't want validation to perform on input form when page loaded first time because all the fields are blank for user to fill in. Suppose for register ...
1
vote
2answers
1k views

Struts2 File Upload

I want to upload multiple files in one form and that number of files is varying from user to another, ex. a user may upload 2 files and another user could upload 12 files. I want to know how could I ...
1
vote
2answers
462 views

At a high level, how does struts2 work? I'm coming from a mvc background

At a high level, how does struts2 work? I'm coming from a mvc background Looking at a sample project, I see allot of these ___action type classes. Is it just a action references to a controller ...
0
votes
3answers
444 views

Submit two html form in jsp using single submit button? tried ajax but not working

My page design is such that I have to use two forms that submit on single click and then saved to database and vic-versa. I am using this on a JSP page with Struts2 Framework I have tries the ajax ...
0
votes
1answer
620 views

Hiberate with Struts2 - Use Full Hibernate Plugin or another method to close Sessions?

I'm using Struts 2.2.1.1 and Hibernate 3.6.2.Final. I'm also using C3P0 for my connection pool which is running on Tomcat 7.0.11. I'm having issues where my Hibernate Sessions are not being closed ...
3
votes
4answers
7k views

How to make Struts radio tag create a vertical list of radio buttons

I'm using a struts radio tag that is being populated with a list of objects that have two fields: class MyAction { List<MyObject> myList; String selectedId public String ...
0
votes
1answer
808 views

OGNL and wildcards working in tiles definitions with struts2-tiles-plugin?

I want Tiles to resolve ognl from the struts2 value stack. How to do this? Using tiles 2.2.2 (although if a later version such as 3 could be used that is fine) Here it mentions the new feature: ...
0
votes
1answer
1k views

Tiles2 Struts Switch Locale

I am newbee to struts2 and tiles2, I am having an application where i m using struts2 as mvc framework and tiles2 as a view component. In my application I am using 2 languages English and Marathi the ...
-2
votes
4answers
433 views

struts2 s:form element trims the s:url parameter in the action attribute

I am using <s:url> to create a url like removeAction.action?id=10 which should be used by the action attribute in the <s:form> element. The issue here is when the <s:form> converts ...
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 ...
5
votes
6answers
2k views

Looking for a good tutorial on JSP / Struts 2

Referencing my previous question about a good language for a deployment stack, we settled on Java / JSP. While with pure Java most of the team is up to par we have a few people who haven't done JSP ...
3
votes
5answers
15k views

How to input Date to a Struts2 action from a jsp?

I am facing a lot of problems here in my jsp page. What tag I should use to get a date (yyyy-MM-dd) from user and store it in a Date property of a Struts2 action ? The property in my action is ...
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" ...
9
votes
2answers
419 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? ...
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 ...
5
votes
3answers
29k views

Struts 2: parameters between Actions

I have the following question: I need to pass a parameter (for example ID ) when I finish a form and the action save the form's values, this will forward to the result = "success" and I need that the ...
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, ...
4
votes
1answer
1k views

How to link Custom interceptor using Annotation

I had a custom interceptor in hand and I want it to be associated to an Action class using annotation. I had added interceptor-ref using the one declared in struts.xml but am getting exception as, ...
4
votes
1answer
1k views

netbeans 7.0 shows error in Struts2 select tag .. netbeans version 6.9 does not show this error

<s:select name="PenaltyPercentage" id="PenaltyPercentageId" list="#{'7.5%':'7.5%', '15.0%':'15.0%'}" <!-- shows error in this line --> headerKey="" headerValue="Please Select" ...

1 2 3 4 5 10