Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications.
-1
votes
0answers
23 views
Spring3 and struts2 application -internationalization
I am building a web application using spring for security and injection, struts for actions and tiles for views. I would like to implement i18n, but since I would to make it accessible in the whole ...
-2
votes
0answers
54 views
Using jasper reports. stucked at compilation of jrxml
Actually
the parameters that I have passed to compilereporttofile() method is not accessible in action.
I have got the below errors:
net.sf.jasperreports.engine.JRException: ...
0
votes
2answers
137 views
How to check whether the checkboxlist is checked atleast one in Struts2?
I'm working in struts2 framework. I have a checkboxlist in my code.
<div id="MyCheckbox">
<td>
<s:checkboxlist theme="simple" name="claimListView.claimStatus" ...
-2
votes
1answer
41 views
There is no Action mapped for action name index, How to catch the exception, because I want to define my handling
com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:189)
org.apache.struts2.impl.StrutsActionProxy.prepare(StrutsActionProxy.java:61)
...
1
vote
0answers
61 views
Struts2: Is there a way that checkbox directly links to action class when checkbox is checked?
For eg:
<s:checkbox name="checkMe" fieldValue="true" label="Check Me for testing" action="someactionclass"/>
when checkbox is selected, the control is not redirecting to the particular ...
-1
votes
0answers
65 views
Struts 2 skip Action Validation
I am overriding validate method of Strtus 2 Action class to validate the posted form.
As I am having couple of methods in action class, I want to validate only for particular methods.
For that I am ...
-2
votes
2answers
162 views
which reporting tool I should use: Birt or Jasper
I know there is a lot of link with comparison but believe me that did'nt help me.
I am working on a project in which I am using Struts 2.3.7 ,hibernate3.4 & spring 3.0.5 for DI ,In my application ...
0
votes
0answers
58 views
Showing csv file on GUI
Platform : JBOSS 5.x,Struts2,JSP
I am showing a csv file on gui.To Do this
1. First i am calling showFileData function of TestAction class.
2. showFileData function is forwarding control to 'Test.jsp' ...
0
votes
1answer
96 views
popup image and view large from existing img
I have loaded files from server of different types in a jsp, now I want image files when clicked to popup, I know I can again request the server for data and popitup, what I want to know is is there ...
0
votes
1answer
162 views
get value of <s:select> in action class
I want to create combobox in jsp with struts. My jsp page is:
<s:form id="form-sign-up" class="round styled" action="signUp" method="post" name="myForm" theme="xhtml" ...
0
votes
1answer
55 views
Display images as thumbnail and then download Struts2
I am trying to view an image which is not in the application but in other drive. but i am not getting the output, my action is not getting called. please point out the mistake.
jsp
<img ...
1
vote
1answer
62 views
Export from Java EE + Struts2 to DOC files
Someone knows any java library that allows me to export information to doc format, I appreciate variety.
My project is using Java EE and STRUTS2. So I need to evaluate and to compare the options.
...
0
votes
1answer
35 views
struts 2 rest plugin client program
i am writing the client web jsp page just like having one form(get) with user name search text box and submit button
when the user submits it returns the json format of user
but the url looks like ...
0
votes
1answer
111 views
Displaytag struts 2 go to specific page
in my project i'm using display tag. The problem comes when the results returned are like e.g. 300 pages. The user needs to jump to page e.g. 200 but he can't. He needs to go slowly there ( 5 pages at ...
0
votes
1answer
41 views
How to use s:if to compare the value of s:hidden
I have s: hidden tag like this...
<s:hidden name="hiddenpopup" value="0" id="hiddenpopup"/>
I am setting the value of the hiddenpopup in javascript like this :
...
1
vote
2answers
356 views
How to insert image in database using struts2 <s:file> tag
I want to insert image in database in struts2 application;
I am using three classes
model class
dao class to insert query using prepared statement .
action class
In jsp I am using <s:file> ...
-2
votes
2answers
39 views
Struts 2 library was not identifying when I was placed under the “Java Resources\Libraries” folder why?
When I was developing Struts2 application, I was getting
Exception starting filter struts2 java.lang.ClassNotFoundException: ...
1
vote
1answer
69 views
return caller caller page after login in struts2
I have a download.jsp page which has an functionality of downloading the files only when he logins.
when ever he clicks the download option it asks for the login to download and he redirected to login ...
1
vote
1answer
97 views
Sample of implementing Spring-security on Struts2 does not work
My application is supposed to show secret.jsp page to users with ROLE_ADMIN access only, but it does not.
I have defined two users, one with ROLE_ADMIN access and the other with ROLE_USER access. I ...
-1
votes
0answers
141 views
How to search and display data in the same jsp struts2 with jqgrid [closed]
I'm trying to search and display data in the same jsp using struts2 and jqgrid.can any one provide a simple example or help me to do it correct.
<s:form action="searcheleverecord">
...
0
votes
1answer
34 views
Struts Json Plugin Date conversion when date field is empty
I have issues with Json plugin not able to convert my empty string to a null date object. In spring mvc I have initbinder in my controller which takes care of this. How can I achieve this with struts ...
-1
votes
0answers
77 views
Struts2 form javascript force OGNL evaluation in the onclick event
I have an iterator over a list of object, and for each object, I made a form action.
My question is how to submit this form with a link and not a button.
this is what I made, but it is not working :
...
3
votes
1answer
27 views
Struts2+Validation in liferay6
I have my view.jsp with the form :
<s:form action="action">
<s:textfiled name="user"></textfield>
</s:form>
I created my ActionClass and ActionClass -Validation.xml in the ...
0
votes
3answers
156 views
jquery add html content to div from struts action class variable
I am trying to add HTML content into a div on page load. This HTML content is coming from a struts action class variable. I have tested that the I get the HTML content passed to the resultant jsp file ...
0
votes
0answers
51 views
Response is null in ajax call using jquery though set successfully in java
I am getting null response in ajax.Below method in java is called correctly and it writes success message in jsonObject. But in javascript response is returned null.Please help me understand what I am ...
2
votes
6answers
235 views
How to include a jsp inside another jsp using javascript
I have a button logout. Once logout is clicked I need to show another page. How can I do this using JavaScript? Can anyone please help me?
My Code:
<s:form name="LogoutAction"
...
1
vote
1answer
50 views
Struts 2 map default action on specific namespace
I want to have an action mapping on each "/mobile/*" urls.
When I put the folowing in my struts.xml :
<package name="default-mobile-action" extends="mobile-default">
<action ...
0
votes
0answers
111 views
redirect from action to external url in Struts2
I am trying similar thing as of this question
redirect external url in browser
but it is not working with me at all.
Action code:
public String getMail(){
try { //some code
...
0
votes
2answers
82 views
Struts2 - getting variable from complex structure
I have a JSP, here the snippet:
<s:set var="tmpIdObj"
value="form.dati.assegnazioniAnnualitaAtto[#qid].lista[#k.index].idObj"/>
<s:set var="c6"
...
0
votes
1answer
46 views
struts 2 Undefined attribute name “var”
I am trying to iterate over two 2D arrays Org_Positions_IdTitle and Org_Apps and print out a field but I keep getting the Attribute var invalid for tag iterator according to TLD also in my jsp page ...
0
votes
0answers
118 views
jquery filter toolbar searching not working properly with more than one filter search dropdown
I am trying to have two dynamic dropdown lists("Test Scenario Id" and ""Action Command") in a custom filter toolbar search using jquery-struts2. But both the lists seem to take the same values,i.e ...
0
votes
0answers
38 views
How to maintain the data in a list even when the page loads
I have two select boxes and I have ADD button under first select box and REMOVE button under second select box. There are around 5 items in first box.When I select any one item and
click ADD, then it ...
0
votes
1answer
90 views
Struts2 Jquery Ajax form serialize
I am learning Struts2 and have the following question on submitting a form with Jquery serialize. I have an action class where I have an object called Policy and the policy class has set of fields as ...
0
votes
2answers
79 views
struts2 filename and content type null, upload with plupload
I am getting file name in action as null, uploaded from plupload plugin. how can i get the original file name. Please tell where is my mistake.
jsp
<%@ page language="java" ...
-1
votes
1answer
68 views
iterate over two arrays in jsp using struts 2 tags
Can Anyone help me please.
My intention is to iterate over the two 2Dimentional arrays
Org_Positions_IdTitle which contains a)the ids of raised positions and b)their Titles.
Org_Apps which ...
2
votes
1answer
92 views
struts2, jsp project; show pdf
I am try to show an pdf in jsp page without saving this in the hard disk. I was able to generate a pdf and I tested it by saving it in hard disk. I am using DynamicJasper as reporting engine.
Here is ...
-4
votes
0answers
23 views
htmltopdf please provide the details abt plugin
I have 2 templates of Application form, I have to get the details in the Web form page and I have to print the particular data in the respective columns in the form using java.
Is there any way to do ...
1
vote
1answer
66 views
How to draw polyline in struts2 using google map3
I want this functionality to my project.
I am trying to provide the functionality, Onbutton click, I fetch the coordinates data from MySQL into an array and then put this array to the value of the ...
2
votes
0answers
27 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.) ...
0
votes
0answers
71 views
What is the folder structure of Java EE web app when using ANT?
I am just a beginner in Java EE.
Could anyone tell me what the folder structure is of a Java web app when using Ant? Could you also let me know where the JSPs, Struts action classes, and resource ...
1
vote
0answers
30 views
PageOutputStream causing java.lang.OutOfMemory
We have a struts2 web application running in Tomcat 7 that is intermittently experiencing the same problem:
Application operating perfectly normally
After a variable amount of time (anywhere from ...
-1
votes
0answers
35 views
plupload+struts2 all null values in action
This is the third plugin i am trying out with struts2, in php examples i can see so easy code, whats wrong in struts2, i have almost tried every way to get it to work, y the values are null, and also ...
0
votes
0answers
73 views
struts2+uploadify http error 302
i am trying to use uploadify with struts2, when i select a file its showing, http error 302. Please someone point me the problem. I think its not reaching the server at all, cause, there is no output ...
-1
votes
0answers
37 views
Exception while uploading file in struts 2
It is working file but exception is thrown on the server log.
Problem shown in the server:
Apr 21, 2013 12:51:01 PM org.apache.catalina.core.ApplicationDispatcher invoke
SEVERE: Servlet.service() ...
0
votes
0answers
106 views
How to make button appear and disappear based on option selected in dropdown in Struts 2?
In my jsp I have a dropdown in which when I select User Defined option I want Next button to appear instead of the Finish. The Cancel button always remains irrespective of the option selected. How can ...
1
vote
1answer
364 views
blueimp jquery file upload Empty file upload result struts2, fileitems empty
I am using Blueimp and backend is Java, Struts2. I couldn't find much info on the net regarding Java as backend, anyway I managed to use the sample code, but I am getting "Empty file upload result" ...
1
vote
1answer
47 views
Can i configure validation in xxxx-validation.xml for List?
Now in my save action,i defined a model which called booking and it is as following:
Class BookingAction {
private Booking booking;
...
}
Class Booking {
private String bookingNo;
...
3
votes
2answers
116 views
How to forward request from servlet to action of struts2?
I want to forward a request from Servlet to Action like this using RequestDispacher like this
RequestDispatcher dispatcher=request.getRequestDispatcher("hello.action");
dispatcher.include(request, ...
0
votes
0answers
21 views
DefaultActionInvocation is giving java.lang.IllegalStateException: Action has already executed [duplicate]
I am new to Java and am developing a web application with the Struts 2 framework. I defined an interceptor class for session validation, but with it deployed I'm encountering the following ...
0
votes
0answers
136 views
Unable to run spring struts maven project on WebLogic 10.3.3 using Eclipse
If I build this project to war and deploy it on WebLogic, it works well, but if I run on server using Eclipse, i got this error:
Caused By: Bean type class com.opensymphony.xwork2.ObjectFactory
with ...


