Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications.
5
votes
0answers
236 views
Struts 2, type conversion of Dates in a List, non-default format
I have an action, that action has List of Dates property. The request parameters will come in "yyyy.MM.dd" format.
In have "-coversion.properties" file (I don't want to use global type converter for ...
4
votes
0answers
105 views
Properties file gets unloaded
I have a Struts 2 web application running on Tomcat 7 on Windows Server 2008 (only Tomcat, no Apache or IIS). The texts in the application are stored in .properties files and are managed by Struts 2 ...
4
votes
0answers
1k views
File upload struts 2 with Ajax
I am uploading a file using struts 2 with jsp as front end, but I dont want to refresh the page after the file is uploaded, so i am using Ajax but with that I am not able to get the File object in ...
3
votes
0answers
193 views
struts2-core shared dependency between ejb modules
I have an EJB application with the structure below. All dependencies are held in the /lib directory and shared among all web modules.
├── app1_war
│ ├── index.jsp
│ ├── META-INF
│ └── WEB-INF
|
...
3
votes
0answers
207 views
Play Framework high latency
I created an web application using struts2, hibernate with mysql. I migrated to play framework so now I have two instance of the application one written in play the other with struts2. I can see a ...
3
votes
0answers
637 views
Reload struts2 action embedded in JSP
Ok, I will try to make this as short and easy to follow as possible.
I am using a JQuery Full Calendar and displaying events to a user. I have a Filter action on the page that allows the user to ...
3
votes
0answers
511 views
Struts 2 Ajax Validation with jsonValidationWorkflowStack and Model Driven
I'm trying to use Ajax validation in my Struts2 web app (with JQuery plugin) and i have an issue.
I had problems using the @Validations annotations so I'd just overrided the validate() method and all ...
3
votes
0answers
250 views
Struts2 Result type http header 500 does not trigger onErrorTopics in sj:autocompleter
We have a Struts2 application using Struts2-jQuery framework for Ajax operations. While using the Autocompleter (sj:autocompleter) tag in Struts2-jQuery as follows, it makes an ajax request to the ...
3
votes
0answers
683 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 ...
2
votes
0answers
48 views
Struts2 JSON plugin includeProperties - not full regex support?
The documentation for Struts2 plugin version 2.3.x says that the includeProperties parameter can be set, and behaves as follows:
A comma-delimited list of regular expressions can be passed to the
...
2
votes
0answers
46 views
Stop sj:datepicker from opening Struts2
I have following <sj:datepicker> :
<sj:datepicker
id="dateFrom_id%{index}"
name="billingItems[%{index}].dateFrom"
value="%{billingItems[#index].dateFrom}"
...
2
votes
0answers
104 views
How to get the values of a table generated in the jsp in the action in struts 2?
In my jsp I am selecting some values from one Table1 and adding it to another table Table2 by using the Add button. This is my jsp:
<%@page contentType="text/html;charset=UTF-8" language="java"
...
2
votes
0answers
43 views
Different results for different struts2 action suffixes
I want Struts2 action to return different pages based on action suffix. I think it is possible to create a filter that wraps original request and changes URL the way that URL's with different suffixes ...
2
votes
0answers
134 views
Need to upload multiple files at once
I need to upload 1000 files all at once using struts2 I have the following answers but none of them suits the purpose.
Using one of them I can click on the button to have more input fields but if I ...
2
votes
0answers
30 views
Security Framework (JSP Field Level + method level)
I have a Struts2 application. I am trying to add some Security to the app.
I need the following features :
1.) What fields the user can see/edit in JSP depending on his security permissions
2.) ...
2
votes
0answers
127 views
How to exclude properties when requesting from struts-rest-plugin?
I am working on struts-rest-plugin index method to return list of my Fruit objects in xml or json format. It works really well.
Model class:
class Fruit {
private String name;
private ...
2
votes
0answers
80 views
Struts2 validations annotation gives multiple messages
I am using the convention plugin. Below is the @Validations annotation.
@Validations(
requiredFields={@RequiredFieldValidator(type = ValidatorType.SIMPLE, fieldName = "revenue", message = ...
2
votes
0answers
207 views
property rootNode in struts2-jquery-tree-plugin doesn't run
I'm testing struts2 jquery-grid-tree plugin but when I render a tree whose info come from an action in JSON format, I have some troubles.
As I want more info from my action for another purposes, my ...
2
votes
0answers
142 views
Struts2 Json plugin response customization
I have some bean with properties.
And json response is e.g.
bean:[{"id":"1", "name":"Jack", "lastname":"Poter"}]
Is there any ways in struts-json-plugin to convert response like this?
...
2
votes
0answers
138 views
struts2 ognl servlet context
I have some constants like APPVERSION, APPNAME and APPREV that I want to display on every page on my Struts 2 app.
With these requirements I thought that it would be great to put that info intro ...
2
votes
0answers
214 views
Tile 3 does not work on struts2
I am trying to use Tile plugin in my struts2 application, but I am receiving the following error,
"Error occurred during deployment: Exception while loading the app : java.lang.IllegalStateException: ...
2
votes
0answers
80 views
Reading from dragged and dropped excel table
I'm working on struts 2 with hibernate 3.
I've a functionality of Importing from excel doc in it.
I found how to import from excel file once the file is uploaded by using the following code.
try {
...
2
votes
0answers
420 views
AutoComplete texinput : Struts 2.1.8.1, jsp, ActionClass
I'm trying to create an autocomplete text input.
I've heard that it's also best now to use <sj:autocompleter> rather than <sx:autocompleter> because dojo is deprecated but I'm stuck.
I ...
2
votes
0answers
206 views
how to include spring RESTful service to my existing Struts2.0 project
I was trying to implement spring RESTful service to my existing struts project, but not able to complete the same.i added spring rest service but when I tried to run my existing application,it does ...
2
votes
0answers
227 views
Tomcat and Struts 2 - Active Directory Authentication in Interceptor
I have LDAP authentication setup in my Tomcat server, and roles defined which works for login. I want to allow everyone on the domain to login, which is all sorted.
I have a struts2 interceptor ...
2
votes
0answers
278 views
Committed before 500,java.lang.IllegalStateException: Committed
what's the problem ? i am confused..
2012-12-01 09:51:29.689::WARN: Committed before 500 Unable to show problem report: java.lang.IllegalStateException: STREAM
2012-12-01 09:51:29.690::WARN: ...
2
votes
0answers
140 views
Struts 2 s:iterator: How to avoid name clashes?
As far as I see, s:iterator always pushes the current item into the OGNL Value Stack, even if I use the var attribute. This means that all the members of the current item become top-level OGNL ...
2
votes
0answers
210 views
session sharing on multiple domain but same ip address in tomcat
I have two domains one is example.com and the second in mydomain.com both domain is hosted in same ip address. I have a feature like add to cart in the website and it is stored in session. When i ...
2
votes
0answers
166 views
Struts2 with rest-plugin: Map JSON value to ENUM
I'm using Struts2 with the rest-plugin to build a RESTful web services. Serializing from Java objects to JSON was a breeze - everything mapped correctly and beautifully. Receiving JSON and attempting ...
2
votes
0answers
333 views
struts2 Async Action
Looking to use Struts2 with Serlvet 3.0 Async support.
My first approach was to just handle to writing to the outputstream in the action and returning null. This however returns with a 404 ...
2
votes
0answers
949 views
Create Web Service from struts2 Web Application
First, I'm new to Web Services. I have a didactical task at university about developing web application and web service for something like managing distribuited drug stores.
I've developed a working ...
2
votes
0answers
2k views
Struts 2 jquery grid component with jquery grid column type list which takes list of objects
The problem I have is that I am trying to have a multi select data grid column which will have a List objects (productsEntitled).
I've got the products to display properly by providing a a ...
2
votes
0answers
533 views
Struts2 tree tag with checkbox
I Am Trying to build a form having a tree where each node in the tree needs to have a check box to take input from the user.
How can I accomplish this using struts2 tree tag? .can any one please help ...
2
votes
0answers
112 views
need help on gmail sso
I am developing a web application using strut2 framework and using gmail credentials for login to that application. I am able to use google account services for login purpose successfully. Now I am ...
2
votes
0answers
206 views
struts2 input iteration
Im using struts2 with freemarker template and i want to iterate over inputs and save them in search criteria.
In my action i have
private SearchCriteria criteria.
with method setCriteria and get ...
2
votes
0answers
522 views
Struts 2 Jquery Ajax Form submit filenotfound error
I have a form on my jsp which looks like
<s:form action="registerUser" theme="simple" name="AddUserForm" id="AddUserFormID" method="post">
In my struts.xml I have made entry for the ...
2
votes
0answers
1k views
Hibernate and Struts2 java.lang.NullPointerException w/CRUD Demo
I have a project which I am using Hibernate and Struts2 together, and I am new to both of them.
I am having trouble working out the CRUD process with the Hibernate and Struts2 combinations. I want to ...
2
votes
0answers
276 views
Struts2 Map/Collection Validation
I am trying to do validation on a Map using struts 2.
When I click on the submit button, the error message will always appear even though I have inserted a value into the textbox.
Is there anyway ...
2
votes
0answers
275 views
CKeditor uploads in Struts2
I have specified in struts.xml all the options for editor:
<constant name="struts.ckeditor.allowUploads" value="true" /> <!-- default is false -->
<constant ...
2
votes
0answers
402 views
Implementation of Execute and Wait Interceptor on Struts 2 File upload interceptor?
I am trying to implement the Struts Execute and wait interceptor on File upload interceptor of struts as I want to show the progress bar showing the file upload progress.
Can anybody help me out in ...
2
votes
0answers
897 views
Change jquery grid theme (ui.jqgrid.css location) in struts2
I have a jquery grid component on my webpage. I want to change css file, that it uses. I set it in jj:head tag:
<sj:head jqueryui="true" jquerytheme="custom-theme" customBasepath="css"/>
And ...
2
votes
0answers
480 views
Multiple Tiles Definition Files OR Passing Parameters to tiles.xml at Runtime
Is there any way to define a new tiles definition file other than the tiles.xml file at runtime (say tiles2.xml) and use it? I want to create a tiles2.xml using Java when a action is called. Or, can I ...
2
votes
0answers
248 views
Struts2 properties file reload
My struts.xml:
<constant name="struts.devMode" value="true" />
<constant name="struts.i18n.reload" value="true" />
<constant name="struts.custom.i18n.resources" value="global" />
...
2
votes
0answers
370 views
Programmatic configuration of Struts in Jetty
I'm trying to configure struts2 within Jetty programmatically, but am having a lot of trouble doing so.
As these are for 'unit' tests, I don't wish to use spring or any other 'DI Framework'.
here is ...
2
votes
0answers
1k views
How do I have dynamic parameter names in a Struts 2 action redirect?
So I'm trying to create an action redirect that has dynamic parameter names as well as values. I understand how to do this in the struts.xml file for parameter values, but cannot seem to get things ...
1
vote
0answers
26 views
How can i build a dynamic scaffolding in a jsp depending the subclass of an entity?
Well,
I have the Vehicle Class,
And I have a car, a bike, a motorcycle, and other classes with inheritance, and the administrator of vehicles (CRUD).
When I search all the vehicles, the ...
1
vote
0answers
25 views
Displaytag in struts2 checked columns dissappear when changing pages
i have this problem with displaytag...when i check some rows in the table and after go in another page for checking others the checked elements of the previous page disappear.
If i return to the ...
1
vote
0answers
42 views
How to apply TinyMCE text editor in Struts 2?
I want to apply a rich text editor in my Struts 2 project. For this I am using TinyMCS in the following manner in my .jsp file:
<%@ taglib prefix="sjr" uri="/struts-jquery-richtext-tags"%>
...
1
vote
0answers
64 views
struts 2 generated error/input page was not decorated by sitemesh
I was using sitemesh 2.4 with struts 2.3.14. Sitemesh correctly decorates the webpages except for one situation: when the form validation fails and struts 2 renders the original input jsp page with ...
1
vote
0answers
60 views
Spring Struts 1 advice is not being invoked
Our project architecture uses Struts 1 and Struts 2 with Spring 3. I am trying to create an Aspect for better exception handling. Struts 1 was until now not Spring managed - So I followed this link ...




