0
votes
1answer
8 views

Forward slashed removed in form id

I am using Struts2(2.3.14) and a forward slash character included in a variable created in the java server-side code is being escaped to _ after using it inside an struts form tag. The code (jsp): ...
0
votes
1answer
11 views

Displaying Validation Error Messages in Struts2

I am new to Struts 2, have worked in Struts 1 earlier. How can we bind a error message with a UI component (e.g. a Text box) ? I don't want the error message to be a global one. For achieving the ...
0
votes
2answers
39 views

How to transfer contents of one table to another in struts 2?

I have two tables displaying two lists. This is my jsp <%@page contentType="text/html;charset=UTF-8"language="java"pageEncoding="UTF-8"%> <%@taglib prefix="s"uri="/struts-tags"%> ...
-2
votes
1answer
21 views

Unable to work with Struts2 and REST Plugin [closed]

I've been trying to work with the REST Plugin of Struts2 but was unable to make it work with a VERY simple project and following tutorials but I'm really unable to make it work. I literally feel like ...
-1
votes
1answer
38 views

Handle ActionForward in Struts 2

I am migrating my Struts1 application to Struts2. Is there any alternative for the below code in Struts2, I am using this in my Action classes. String path = ...
-1
votes
6answers
57 views

404 when running project through eclipse on Tomcat

I have a Struts 2 project with following directory structure. But when I try to run this project using Eclipse on tomcat 7, it gives me 404 error. Struts.xml <?xml version="1.0" ...
0
votes
0answers
35 views

Need to look up a description for an id from database; can i use struts type converter?

I have an id in the bean and mapped in orm.xml to database. For each id I have to lookup description from database and display. If I have enum values R:"RED" G:"GREEN". Struts does type conversion ...
0
votes
3answers
34 views

How to use s:set as param to s:push making static method call in struts2

I tried : <s:set name="ordersymbol" value="EURUSD" var="ordersymbol"/> <s:push value="@dao.positions@positionsO(%{#ordersymbol})"> <s:set name="ordersymbol" value="EURUSD" ...
-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" ...
0
votes
3answers
116 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 ...
-3
votes
2answers
101 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
vote
2answers
342 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> ...
0
votes
0answers
103 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
votes
1answer
65 views

Hide extension for action class in struts2.0.14 version

I need to hide action extension in Struts2.0.14 version. By configuring the below things it is working fine in Struts2.1.8 version. But it not working in the 2.0.14 version, i am getting these sort ...
-1
votes
0answers
109 views

How to get the values entered in the table in action class using iteratior in jsp in struts 2?

I have a table with an add row and delete row functionality. In each row I need to fill in some values before submitting it. I want this table to be inside an iterator so that I can retrieve the ...
2
votes
1answer
388 views

How to get values of the rows of a table that are filled in the jsp in the Action class in Struts 2?

I have the following jsp in which I have an option of adding and deleting rows of the table and in each row of the table which have the same fields I have to fill in the options and submit the form. ...
0
votes
1answer
121 views

Struts2 addActionError setting result to input automatically on redirect result

I have a struts2 action, which sets some error using addActionError something like below public String del() { if (new OrdersService().get(idorder) == null) { ...
1
vote
1answer
122 views

Invoke Struts Action Test from within a web app (JSF managed bean): TestCase.fname cannot be null

I have a Junit 3.8 test of a Struts 2 action that runs with no problems from my workspace (from eclipse: right click > run as > junit test). For this, I use two plugins: <dependency> ...
-1
votes
1answer
62 views

Submitting objects and lists struts1

I have a class MyClass as below public class MyClass { private int fieldOne; //with getter, setter private String fieldTwo; //with getter, setter } I have following two fields ...
1
vote
1answer
157 views

CSS is not working on struts2 form page

In my struts 2 application i am trying to add css style but it is not displaying on the page . But when i click the submit but 2 times and after showing valiation error only then css is displaying ...
-3
votes
2answers
50 views

Struts with no auth? [closed]

How to invoke Struts without authentication? I need to add a new action in Struts 2, but I don't want any login authentication for this action. Is it possible with Struts 2?
4
votes
1answer
92 views

Executing multiple actions one after another

I am in need of a way of executing multiple struts actions with one request. The goal is to minimize the need of request against the server. So what i need is something like a "MultiAction" which gets ...
0
votes
0answers
42 views

Display breadcrumbs of pages in a website

I am very new to struts2 I want know how can I display navigation of pages in a website like home->login->your account->xx-> etc in the current JSP page
1
vote
1answer
207 views

struts2 jquery ajax return data from server, how?

Hi i want to return a line from the action method. My jsp is below <%@ taglib prefix="s" uri="/struts-tags"%> <%@ taglib prefix="sj" uri="/struts-jquery-tags"%> <html> ...
-1
votes
2answers
57 views

can i use jquery.js directly in struts2

I already have a simple application, to experiment I am implementing the same in sturts2, in old app I used jquery, now can i use directly the same jquery.js here or shall i opt for struts2 jquery ...
1
vote
2answers
116 views

Setting StrutsSpringObjectFactory as my current ObjectFactory

I am working on a project that uses openSymphony 2.1.2 and struts 2.3.8. However on that code base I am trying to apply a piece code that was written for older versions of openSymphony and struts. ...
2
votes
2answers
49 views

Struts ActionProxy: how to set a method?

I'm using openSymphony 2.1.2 and I have some old code that was written for older versions of openSymphony. As you can see, it tells me that ActionProxy has no method setMethod(String). It probably ...
-1
votes
1answer
48 views

Looking for a solution for making 3 inter depended Select tags.(One more select than doubleselect)

I am having an issue in creating 3 inter-depended select case. If i am having just 2 select Then i can use doubleselect, but here its more than two select case. My code looks like this. <s:select ...
0
votes
1answer
125 views

How to remove warning from the server log: [WARN] No configuration found for the specified action: '/' in namespace: ''

I have developed a application using struts 2.0. On the server log I am getting certain warning lines. I want to fix this warnings but I am not able to do it. [WARN] No configuration found for the ...
0
votes
0answers
55 views

Getting a JasperException in the Navigation page

I am getting the following error message in the Navigation page. The page is displayed with HTTP Status 500 Error. Here is the complete error message. HTTP Status 500 -type Exception report message ...
0
votes
1answer
99 views

How to set name and value in s:doubleselect tag in STRUTS 2?

This is my code: <s:set name="serverList" value="#{ 'AppServer': {'Apache', 'Tomcat', 'JBoss'}, 'Database': {'Oracle', 'MySQL'} }" /> <s:doubleselect ...
0
votes
1answer
429 views

How to retrieve the values of the row selected using radio button in Struts2?

I have displayed a table using iterator with a radio button for each row, based on the row selected I want perform edit and delete operations by clicking on a button. How do I retrieve all the values ...
3
votes
1answer
234 views

Websphere custom error page not working

I have been struggling to get the Websphere custom error page for the errors such as 404 (File not found). I have added the following to my web.xml under /WEB-INF/ <error-page> ...
-3
votes
1answer
97 views

Duplicate Post Data Struts

I try to test my save function by submit form using JMetter (submitting 100 data). In my function, first i save the data to database. But because there are so many data that saved duplicated, i try ...
1
vote
1answer
207 views

how to solve comma separated values in struts2

I have a JSP which has user to create items. After creation I am showing them in the same page in a table along with two button say update and delete. When the user changes the values and clicks on ...
1
vote
3answers
586 views

Getting null value from struts/dojo datetimepicker in my struts 2 action?

I am using two struts/dojo datetimepicker in jsp page of my struts 2 web application. These allow to select date and displaying properly but when i submit the form and access the datetimepickers value ...
-2
votes
1answer
237 views

Unable to get values in action class of Multiple <s:select>

I am using multiple with multiple="true" And Code is <tr> <td> <s:select name="drAccountCode0" label=" Dr. A/c Code" labelposition="top" labelSeparator=" " ...
-2
votes
4answers
449 views

i want to abort form submition(action calling) in jsp if javascript validation function returns false

when i click on add user button it directly call struts action and save data in database i want to abort action calling if javascript method returns false. please help to resolve or give any ...
1
vote
2answers
65 views

ActionRedirect migration to struts 2?

I'm currently migrating a wepapp from Struts to Struts 2 and I'm experiencing some difficulties. I have some ActionRedirect with no extra parameters given to it and I don't know how to migrate it, ...
0
votes
3answers
403 views

Calling a javascript function in displaytag

How to call a javascript function in struts displaytag, i want to pass id into that javascript function.Iam not getting any idea any one help me.. <display:column style="text-align: center;" ...
1
vote
1answer
205 views

Path of struts.xml and web.xml

When I use eclipse to develop struts2. I found the struts.xml file can be put in src folder or WebContent\WEB-INF\classes. Both paths are ok. What's the difference? what's better? Does different path ...
1
vote
1answer
199 views

Struts2 tutorial doesn't work

I'm learning struts2. And I try my hello world projects according to the tutorial Then I run the code in eclipse. But it doesn't work. The Console shows a lot of error. The first is as below: ...
0
votes
1answer
149 views

struts2 portlet on liferay multicolumn layout shows corrupted

I have a struts2 liferay portlet and it's work fine till it's in one column layout page. in view.jsp (first page of portlet) I have a struts form which map to goToPrivilege action <s:form ...
3
votes
3answers
416 views

How to implement paging in Struts2

How can i implement paging in Struts 2 for the client side display and hibernate as the persistence layer. here is the code that i have done so far. <display:table id="students" name="students" ...
2
votes
1answer
97 views

Exception Due to referring struts.dtd file from internet/local

From morning facing Exception while running struts2 apps....application was working yesterday There's a problem in loading some struts2-jquery jar even though they exist in WEB-INF/lib After ...
1
vote
1answer
199 views

How to create database automatically using hibernate with struts 2 framework (Bootstrap file)?

Is there any kind of bootstrap file in struts framework, where the file runs only a single time when it gets started first time. Because I need to insert some default values in database when app runs ...
0
votes
0answers
76 views

How to extracts thumb image while uploading the video in Java (or struts 2)?

I searched on google for extracting thumb image while uploading video in java (or struts 2) but i was unable to find useful stuff for me.so please anyone can give me hint, how to do this? I went ...
0
votes
1answer
194 views

how set itext pdf file name from action class

i am working with struts2 and using itext for generating Pdf file. But my PDF file name are static. i have set file name in struts.xml(Code given below). <action name="form12PdfReport" ...
0
votes
3answers
974 views

where to put properties file in struts 2

I have a property file placed in the root of the web project in java. I am using struts 2. My code is unable to read properties file. Where should I keep my properties file? I have checked default ...
1
vote
2answers
72 views

what does the default struts handler for DELETE do

Struts seems to have a default handler doDelete for the DELETE HTTP method. The servlets I have implemented does not use any DELETE method. However, the DELETE method does show up when I perform a ...

1 2 3 4 5 7