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

learn more… | top users | synonyms (1)

1
vote
0answers
57 views

How Can I Keep common Struts 2 Jquery Datepicker properties in one place, and get the Struts 2 Jquery datepicker tags to reference these properties?

I'm currently experimenting with the Struts2 Jquery plugin. It seems every instance of a datepicker defined in a jsp using this plugin requires its properties set on a tag by tag basis. For example: ...
-11
votes
4answers
73 views

What are Struts in Java ? Why and When do you apply struts in Java? [closed]

I would like to learn and apply Java struts in my Application. Can anyone tell me What are Struts in Java ? Why and When do you apply struts in Java?
1
vote
1answer
53 views

Detecting User Agent to redirect on specific Jsp in struts 2

As title suggests I want to redirect the requests of mobile phones to specific page. another way I expect is only a variable that contains information about UserAgent so That U can use that Variable ...
-4
votes
1answer
58 views

Servlet initialization as “welcome” page for STRUTS2

Please find the folder structure image as below: ( PROJECT & FILE STRUCTURE + web.xml in screen shot) http://tinypic.com/r/28bgvw8/5 I'm using: STRUTS 2 Servlet 3 Glassfish server 3.1.2 ...
-2
votes
0answers
50 views

show files in thumbnails in jsp [closed]

I want to display all the files in a directory as thumbs. Like if video or image file then a preview. or if it is some other file like word or some other, then a no preview image should be shown. Now ...
1
vote
1answer
57 views

how to use struts2 tag to traversal a Map<Object,String> in jsp

How to use Struts2 tag to traversal a Map<Course,String> in JSP. Course is a class. It has three attributes. They are String coursename, int courseid, String courseType. I use Struts2 in my ...
-5
votes
1answer
36 views

i m trying to develop a application using struts 2 .but my application cant find the include xml in it [closed]

i have included struts.xml in my classes folder and have specified common.xml in WEB-INF/mappings folder. but still it shows error .please help struts.xml <?xml version="1.0" ...
-1
votes
1answer
69 views

jquery Struts2 Java $.getJSON params UTF-8 encoding (Tomcat 5.5)

I'm getting mad with this: Tomcat 5.5, JRE 1.6 (compliance level) using JDK 1.7 Headers: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> ... ...
0
votes
0answers
27 views

Apply style to HSSFWorkbook heading row

I tried applying style to head row of HSSFWorkbook in the following way. But it is not working. Default style and font is applied to my result excel. If I apply style to each cell, it is working fine. ...
-1
votes
0answers
16 views

How can I pass all variables of grid row when editing jquery grid in struts2?

I am using strust2 jquery grid plugin. And I want my grid be editable. I can inline edit it but in the post request I see only one parameter (which I'm editing in a moment). How can I send all other ...
-1
votes
1answer
34 views

Session replication on EAP JBOSS 6.0

I am working on Struts 2 framework with EAP Jboss 6. My project session variables were stored and retrieved using 'HTTP Session Map'. When I moved on to the Domain mode of Jboss with Clustering my ...
-1
votes
3answers
85 views

How can we pass a list from jsp to Actionclass in struts2?

How can we pass a list from JSP to the action in Struts 2? The list is a list of strings set from the same action when the JSP page gets loaded (there is a hidden field in the JSP which is being ...
-1
votes
2answers
89 views

JSP Input data (Welcome.Jsp) cannot get by Java code (OrderProcessingAction.saveOrUpdate() )

Jsp page input the details user and sends to struts action, struts.xml mapped the action to Action class OrderProcessingAction method saveOrUpdate() and this method call saveOrUpdateUser() of DAO ...
2
votes
0answers
67 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 ...
0
votes
1answer
65 views

How to upload files using java?

the scenario is as follows, user clicks on upload images, then a three upload file fields will be shown to upload three images, there is also a button to add more images, user can upload unlimited ...
1
vote
1answer
39 views

How to take out the project name from domain? [duplicate]

(Firstly it is not a duplicate, as the other question is not visible to users any more, and none of the answers are correct) I need to remove the project name of my Java application from the domain, ...
-1
votes
0answers
61 views

How reload a JSP page inside a DIV if the result of a Struts 2 action is input or error

I have this action in a stuts.xml file: <action name="validar" class="validar.action.Validar" method="execute"> <result name="success">/validar.jsp</result> <result ...
-2
votes
0answers
54 views

struts2 action method HTTP 500 error

I need some help with my struts2 application. In struts.xml I have defined <action name = "CreateBookEntry" method = "createBook" class="library.Book" > <result name = ...
-3
votes
1answer
47 views

Unable to Save/Add User details [closed]

I have a problem in below code, cannot save user details. Methods are well written but don't know where i'm legging. 1. JSP Page 2. ActionClass 3. Data Access Object 4. struts xml file /** ...
-1
votes
1answer
32 views

Scroll in Struts2

I want to create the div with more textfiled: <s:div cssClass="div_position"> <s:textfield cssClass="position" id="position1" value="" name="position1" ></s:textfield> ...
1
vote
0answers
33 views

SSL on Home page of site

I have home page which is enough heavy with static content like images, css, js which work on making it look good and are must. Also the page has login form, so for security I had to make home page ...
0
votes
1answer
64 views

DisplayTag with struts2 error

I am trying to create a paginated table in Struts 2 using DisplayTag and I can´t make it work. I have created the following files: Class's name Profesores.java: package ...
1
vote
1answer
119 views

Display contents of a list of beans with struts2-iterator

I´m trying to display a list that constains objets of a bean. I´m using iterator tag to display the list /*JSP*/ <s:iterator value="lInfTaq" var="res"> <tr> <td><s:property ...
1
vote
2answers
157 views

hide passed parameter from jsp to struts2 action class

<s:url action="someAction" var="act"> <s:param name="param1">value1</s:param> </s:url> <s:a href="%{act}">Go Action</s:a> By clicking Go Action link, the address ...
1
vote
2answers
99 views

Struts2 ActionContext and Response for chaining actions

I have a pretty complex problem about struts2 chaining actions, thanks in advance for your patience reading my problem. I will try my best to describe it clearly. Below is my struts.xml: <?xml ...
-2
votes
1answer
48 views

how to call displaytag without loading the whole page? [closed]

this is where i call the displaytag table with jQuery function chargerTable(){ jQuery.ajax({ url: 'consultValueTable?table='+$("#idParametre").val(), success: ...
1
vote
1answer
74 views

How to set s:hidden value from another JSP element

i have following form : <s:form id="storno_form" namespace="namespace" action="action"> <sj:submit id="submitId" key="btn.show" targets="cancelation_content" ...
-1
votes
1answer
28 views

reuse method defined under another xml struts2

Here are the sample two xmls. email.xml: <action name="mailSelect" class="com.my.EmailAction"> <result name="success">mailSelect.jsp</result> </action> I want to use ...
-2
votes
0answers
36 views

I'm getting SEVERE ERROR when try to run my project

May 03, 2013 10:30:38 AM org.apache.catalina.core.StandardContext startInternal SEVERE: Error filterStart May 03, 2013 10:30:38 AM org.apache.catalina.core.StandardContext startInternal SEVERE: ...
0
votes
3answers
112 views

pass session id to url jsp page in struts 2

i have a login page and welcome page here is struts.xml file <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts ...
0
votes
0answers
34 views

Jeditable displaying whole page in place of edited row

I am using Jeditable to edit table rows. My problem is that after submitting the changed value (and storing it in the database) when I return to the page it displays the whole page in place of edited ...
0
votes
1answer
34 views

servletactioncontext null in struts2.3.12

for (Cookie cookie : ServletActionContext.getRequest().getCookies()) { The above line is giving me java.lang.NullPointerException at ...
0
votes
1answer
31 views

Possible to use immutable class in Struts2 form?

Situation: I am currently moving from using Struts 1 to Struts 2. In Struts 1, it was necessary for form classes to follow the JavaBean specification. Since my business data objects are all immutable, ...
-1
votes
0answers
92 views

No result defined for action … and result success Struts2

i'm new in struts2 and i'm getting this error while executing the code: No result defined for action com.ilgala.struts2app.register.action.RegisterAction and result success ...
-3
votes
2answers
98 views

How to display struts action message in a popup?

I am new to struts 2. I want to display the action message as a popup in asp. I have a user creation form which then redirects to some page. So after the user is created I want to display a popup ...
-1
votes
0answers
56 views

Struts 2 dojo div targets not working in IE

I'm using Struts 2 dojo div targets, the response that I get is not targeted to the div, instead it opens up as a full page and I'm getting djConfig undefined erorr in developers tool console. I have ...
0
votes
1answer
85 views

Struts2: Problems getting data from HTML/JSP

I have my action, which has a variable HashMap<String, MyObject> My Object: public class MyObject { private Boolean confermata; private String idObj; private String versione; ...
0
votes
2answers
68 views

Reference a variable in the s:url action attribute

So I have a variable set in the page scope like: <s:set name="targetAction" var="targetAction" value="%{'someActionName'}" /> I want to use this "targetAction" variable in the action ...
-2
votes
0answers
92 views

User login module using java,struts2 and hibernate [closed]

I am new to Struts and Hibernate frameworks. I want to develop a simple user login and registration module. Suppose I have login.jsp to get username and password. Then I want to call an execute() ...
-2
votes
1answer
161 views

How open the JSP page of a struts2 action in a popup window

I need to open the JSP called validar.jsp page in a popup window. The struts.xml code is: <action name="validar" class="validar.action.Validar" method="execute"> <result ...
-3
votes
0answers
25 views

Any one has done migration of web server from Jetty to Tomcat ? comes any issues? [closed]

I want to Migrate Web server from Jetty 6.1.3 to Apache Tomcat. So I need to know is there any issues? If any one has done migration then please give your inputs or suggestion.
0
votes
1answer
52 views

Struts2 cross context JSP access using c:import throws ClassCastException

I have a couple of web apps deployed on the same server. There's a jsp in app1 that I want to access from app2. I enabled cross context access in the tomcat and tried this jstl tag: <c:import ...
1
vote
1answer
32 views

Autogrow on jEditable submits everything instead of doing a AJAX call

I'm currently working with jEditable plugin to compose an updatable text. My serverside is developed with Struts2 and the server urls that I invoke are struts actions that return JSON results. I use ...
0
votes
0answers
39 views

How to solve memory leakage in java using Netbeans Profiler?

I am following these LINK1 and LINK2 to find the memory leaks of my Java application. The details of application is as following Java Struts2 Spring-Security Maven My application often runs into ...
0
votes
0answers
30 views

Struts2-Tiles2-Xform-— ${body},${footer},${header} values are empty

I have struts2.xml definition like this: <action name="/template"> <param name="body">/common/test.jsp</param> <param name="header">/page/header.do</param> ...
-1
votes
2answers
60 views

Should I use taglib or HTML? What's the purpose of Struts taglib?

I'm dabbling into JSP after having experienced most of life as a PHP developer. I'm quite comfortable with Java as it is, so I've started to get to know Struts as my MVC framework of choice. I'm ...
0
votes
0answers
73 views

How do I change the output format of datetimepicker of Struts 2?

I implemented the datetimepicker using the <sx:datetimepicker> tag and was able to change the display format. But now, I'm not able to change the format of the date that it outputs to the ...
2
votes
1answer
49 views

How to pass a value of a column as a parameter from another column in displaytag using struts2

In the below code, I am trying to pass 2 parameters from <display:column> tag. I have to pass code and level properties to an action(as shown below). I am not able to pass value of another ...
0
votes
1answer
40 views

stream video from struts2 action multiple contentType?

I am trying to play video file, for my action contentType is set to application/octet-stream now if i change it to audio/mpeg, then user cant download other types of files. I would like to ...
0
votes
1answer
101 views

struts combobox is not populating the selected value on validation

I have done validation for combobox. If I wont select any value and submit the form field error is coming but if I select some value and submit the form the selected value is not populating. Note: ...

1 2 3 4 5 110