Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications.
0
votes
0answers
5 views
Date generated from scriplet set as default value in textfield
i have this scriplet in my jsp and i want it to be somehow include as a default value in my
<%java.text.DateFormat df = new java.text.SimpleDateFormat("yyyy/MM/dd"); %>
how can i access ...
0
votes
3answers
27 views
jQuery selector dont work?
hi im starting to learn jquery, i read tutorial and i constructed my code but i wonder why this code does not work on my page:
<script src="jquery-1.9.1.js"></script>
<script ...
0
votes
0answers
6 views
How do I use an HTML escape character in the label of a Struts2 text field?
I'm attempting to use a lowercase Greek mu (μ) in my Struts2 text field's label, as such:
<s:textfield name="measurement" label="Time Measurement (μs)" />
However, I'm seeing "Time ...
0
votes
0answers
8 views
Is it possible to configure a custom error message per converter?
Is it possible to configure a custom error message per converter?
For example I have this in my xwork-conversion.properties:
java.util.Date=mx.com.afirme.midas2.converter.DateConverter
Whenever a ...
1
vote
1answer
19 views
How to bind JSON to Java object in Struts2 using struts2-json-plugin
I want to deserialize (bind) JSON to java object. How to do it in Struts2?
I am trying to do it with struts2-json-plugin as you can see in code below, but sent JSON from frontend is not binding to my ...
0
votes
0answers
17 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 ...
0
votes
1answer
21 views
MVC in asp.net vs Struts2 in Jsp
in asp.net MVC, we have controller
public class HomeController : Controller
public ActionResult About()
{
ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC ...
0
votes
1answer
19 views
Struts2 <s:select list=“”> not working dynamically
I am using Struts2.
<s:iterator value="empReportFields" var="empReportField"
<s:select name="%{#empReportField.fieldName}" list="%{#empReportField.listName}" listKey="id" listValue="name" ...
0
votes
0answers
7 views
Tiles internationalization
I am using internationalization in my web application using struts2 and tiles. it works for messages defined in messages_en.properties and messages.properties. The problem I am facing concerns titles ...
0
votes
1answer
19 views
execAndWait Interceptor not redirecting to success page after waiting
I have a login screen where some user input validation will happen, the user will be authenticated and finally redirected to the welcome screen.
Below is the interceptor definition for the ...
0
votes
0answers
14 views
Struts2 s:label issue
We need to display only 1 of the labels depending on condition. This is done through Javascript. That works fine, but the issue is we get a 508 compliant error saying 1 form element has 2 labels. The ...
-1
votes
1answer
40 views
how to get <param.value> in action class
i am getting the values in form previous pages as shown
<param name="value1">${param.value1}</param> <param name="value2">${param.value2}</param>
Now on submit of this page ...
0
votes
2answers
20 views
Struts2 WorkFlow Interceptor and actions that do not have an INPUT result
If I understand the Struts2 interceptor stack correctly, the workflow interceptor looks to see if any validation failures have been reported by the validation interceptor. If it finds that there have ...
1
vote
1answer
17 views
struts2 and jaxb for versions of struts2 higher than 2.0.x
Is there some kind of plugin like the struts2-jaxb-plugin that works for versions of struts2 higher than version 2.0.x?
The newer versions of struts2 no longer have the get(Object o) on the Class ...
1
vote
1answer
29 views
retrieve lat and long from given address in struts2
I'm beginning to use google maps api. And I have a problem with geocode, I have lost time to fix it. However, it still doesn't work.
My exercise: typing an address inside textbox then click on "Find ...
0
votes
2answers
30 views
Invalid deployment descriptor error in NetBeans
I'm trying to learn web development using Java.
I have to mention, I didn't open a new project, I'm working on an existing one and trying to add pages to it.
I am using netbeans IDE 7.2.1 to create ...
1
vote
0answers
29 views
insert a date field mysql, struts2 spring hibernate
I'm working on a project using spring hibernate struts2 framework and mysql database, I have a problem when I wanted to add a field of type Date
does not work, it means when I try to insert a Date ...
-1
votes
1answer
27 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
2answers
38 views
Retrieve data from handsontable to Struts2 Action via JSON not working
I am using struts2-json plugin to generate JSON data and Ajax to populate table (handsontable) with data from that JSON (according to the source).
Now, I need to retrieve data from table to Struts2 ...
0
votes
0answers
19 views
Struts2.0 show message/username different way
In Java Struts2.0, we cam use this way to show username
in Action:
String username;
String getUsername() {
return username;
}
void setUsername(String username) {
this.username = username;
}
...
-2
votes
1answer
63 views
One action can have two method?
in asp.net, one controller can have many ActionResult return many ways.
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "Modify this ...
0
votes
1answer
17 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
0answers
17 views
struts2 with tiles2 and thymeleaf
Does anybody know how to integrate struts2, tiles2 and thymeleaf?
I can do the following integrations:
struts2, tiles2, freemarker
spring mvc, tiles2, thymeleaf
But for a migration from struts1, ...
2
votes
1answer
22 views
disable sj:datepicker Struts 2
i have folowing date picker
<sj:datepicker
id="dateTo_id%{index}"
name="billingItems[%{index}].dateTo"
value="%{billingItems[#index].dateTo}"
displayFormat="dd.mm.yy"
...
0
votes
1answer
23 views
Struts 2 Jars Conflict
My struts 2 tile application was working fine.
But after adding the struts2-jquery-plugin library jar, I am getting the following error:
"SEVERE: Exception starting filter struts2
Unable to load ...
0
votes
1answer
23 views
display generated report via jaspereports on browser
i'm developping a struts2 app,and i want to show up my generated report on browser. i've succefully generate my report on disk.but now i want to see it at browser.here is some code.
my index.jsp
...
1
vote
2answers
31 views
How to get action url in jsp using struts2
I have the url: http://demo.lendingclub.com/account/summary.action.
When visit this url, it will first go to the authenticate interceptor, in the interceptor class, If I use:
String uri = ...
2
votes
2answers
39 views
Getting Result type in Interceptor
I have Struts2 actions with different (HTML and JSON ) result types. They use common interceptor.
If need to intercept the request, how to return result based on given action result type?
For ...
1
vote
1answer
27 views
How to add twitter capability to my struts2 application
I developed struts2 web application, now I want people to login from their twitter account, so I need to place a button called "Login with Twitter" under my normal login button. I already did Facebook ...
-2
votes
1answer
23 views
Login with twitter button in my struts2 application [closed]
I developed struts2 web application, now I want people to login from their twitter account, so I need to place a button called "Login with Twitter" under my normal login button. I already did Facebook ...
-2
votes
0answers
25 views
How to connect jdbc with struts2 spring framework and do CRUD operation [closed]
I'm beginner for Struts2 integrated with Spring
Can anyone help me to code for CRUD operation in Struts2 integrated with spring framework.
Thank you in advance.
0
votes
1answer
39 views
how to return to the invoke action in struts2
I'm using struts 2, and I have a, b, c, d four action now. There's a link "mobile view" in all of the four pages, if click the link, it will go to mobileCheck action to set the session.
So after ...
0
votes
2answers
26 views
Why the order of hashmap items get changed?
I am using the following code in my interface, once the results are shown on the browser the order of the values get changed. how to solve the problem?
public static final Map<String,String> ...
2
votes
5answers
64 views
How to run a specific block of code automatically based on date and time?
I am wondering how to make the application execute a specific part of code, for example a part of code to send an email on a specific time and date?
I have read the following questions but none of ...
0
votes
2answers
41 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
38 views
struts2 for modern I performance site [closed]
I want to create a web app and I am looking for the best java web framework to use. The requirements of the app is it needs to handle at least 600,000 user request. Must have a strong security ...
1
vote
2answers
45 views
Send a parameter for every result
I want to send a specific parameter for every result.
struts.xml
<action name="modifierPara" method="modifierPara"
class="ma.ensao.evalmetrics.view.ParametrageAction">
...
-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 ...
0
votes
2answers
31 views
what is the default package name for struts in struts.xml
I created a new class called RegesterAction but I didn't keep this class in any package. How can I configure this class in the struts.xml?
Below is the struts.xml file but I'm unable to understand ...
2
votes
1answer
37 views
Strruts2.3.14 junit test
I'm using Struts 2.3.14 for my application... I need some unit test in my application... so I'm using junit4... but when I use ActionProxy in my test, it will show NullPointerException...
my test ...
1
vote
2answers
33 views
struts 2 file upload without struts tags
Do I need to make use the struts tags
<s:form action="doUpload" method="post" enctype="multipart/form-data">
<s:file name="upload" label="File"/>
<s:submit/>
...
1
vote
1answer
23 views
command line interface for struts2 spring framework (compiled by maven)
I currently have a project that is a web application (struts2 + spring) that is compiled with maven, running on a tomcat7 server on CentOS6.3.
I am wondering if there is any way to provide also a ...
0
votes
1answer
77 views
getting values in pop up window
I have a struts time picker in my parent page like
<sx:datetimepicker id="value1" name="value1" label="Format (dd-MMM-yyyy)"
displayFormat="dd-MMM-yyyy" value="" />
<sx:datetimepicker ...
0
votes
0answers
36 views
Getting error in Catalina when tomcat is shutdown [closed]
I am getting following error when I stop my tomcat server 6.0.36.
May 17, 2013 12:27:27 PM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
SEVERE: The web application [/TestApp] ...
0
votes
1answer
30 views
How to populate a drop-down box with a list
I have a list of roles such as Manager and User, that need to be shown as options of my drop-down box. Currently I can show them using the following code, but not sure how to have indexes with their ...
0
votes
0answers
22 views
Struts2 for cycle?
I have the following code within a jsp and I wan't to get rid of the java code and replace it with struts2:
WeatherService weatherService = new WeatherService();
List<WeatherModel> list ...
0
votes
1answer
37 views
ajax is not capturing actual response from Struts2 action class
The below ajax method firing method in action class and action class failing (with null pointer exception with all stacktrace); but my ajax always goes into success: function.? Please let me know why ...
2
votes
2answers
57 views
struts 2 action with no setter getter
I would like to create an action class with no setter and getter on properties for the data coming from the user interface. Instead, I would like to use ...
1
vote
2answers
34 views
Struts2 action could not execute when redirect (with interceptor) an action to other
I send a request to the ActLand, then intercept(), if not logged in then redirect to Login.jsp.
The struts.xml:
<struts>
<package name="default" extends="struts-default">
...
-2
votes
0answers
12 views
Etat HTTP 500 - L''exécution du filtre (Filter) a lancé une exception [closed]
whene i run my app, an error show up Etat HTTP 500 - L''exécution du filtre (Filter) a lancé une exception.
here is my web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" ...


