0
votes
0answers
6 views
struts2 - understanding the value stack
I have a question regarding the struts2 value stack. Let's say I have an Action class called RegisterAction that has an execute method as follows:
public String execute() {
Va …
0
votes
1answer
7 views
Struts 2 data transfer and type conversions for primitive types.
Hi.
I'm using java beans with automatic data transfer and type conversion.
Ex:
public class MyAction
{
public String execute(){
// ....
}
private double price;
public getP …
1
vote
2answers
37 views
web.xml filter-mapping not forwarding to struts
Hello,
I am trying to do something trivial and can't see what I'm missing. I have the following web.xml...
<filter>
<filter-name>struts2</filter-name>
…
0
votes
1answer
14 views
Getting sitemesh to work with struts2
I'm trying to integrate sitemesh into my struts2 app, but i'm finding that it's not making any difference and isn't showing any errors (or anything sitemesh related at all) in the …
0
votes
1answer
34 views
Forcing classpath precedence with Tomcat 5.5 under eclipse
I am currently developing a web application based upon Struts2 & Spring components combined with a set of tier libraries in a company-made framework.
These librairies expose s …
0
votes
1answer
25 views
In Struts2, how do you share your common html across all pages?
In Struts2, how do you share your common html across all pages?
In Asp.net, you've got Master pages, and in Rails there are Layouts. The idea is that your common html (eg the head …
2
votes
0answers
11 views
Struts Action Validation
Hey People. I have been recently validating Struts 2 actions.
In One of my action class, the save method to be precise must have two id's.
That is an assessmenttype id and a course …
0
votes
4answers
36 views
How can one read a text file in a Struts 2 app.
Hi guys.
Developing a Struts 2 app I run in a following problem. I need to read a text file that is deployed in web server with my app. How can I access it knowing its relative pa …
0
votes
1answer
13 views
Problem: no headerValue when list is empty <s:select>
i am using struts 2
i have a tag
<s:select list="list" headerKey="All"
headerValue="All" multiple="true" name="selectedList"
listKey="id" multiple="false" theme="si …
0
votes
0answers
18 views
struts2 action not calling properly
On default I want my struts2 app to forward to an action:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts C …
0
votes
0answers
15 views
struts2 action avoiding literal duplication
In my struts.xml file, I have:
<action name="preregister">
<result>/WEB-INF/views/user/register.jsp</result>
</action>
<action name="register" clas …
0
votes
1answer
39 views
Dependency Injection failing - hibernate with struts2 using the full-hibernate-plugin
Hi, i'm trying to use hibernate in a struts2 example using the struts2 full hibernate plugin (http://code.google.com/p/full-hibernate-plugin-for-struts2).
I've placed all the Jars …
3
votes
1answer
48 views
How to validate a select tag in struts 2 framework
Hi people,
I am a newbie into programming and i am currently employed as a junior programmer.
I am currently having some problems validating the select tags in one of my forms.
Wha …
0
votes
1answer
39 views
What can I do about ambigous wildcard patterns in Struts?
I have a problem finding the right wildcard pattern to extract parts of my URL into action parameters in Struts.
This is how I set up the action. The intent of the pattern is to c …
1
vote
1answer
45 views
Execute method with arguments through action mapping in struts 2
How would I execute a method with an argument in my model based on the URL? Ie, http://server/MyAction_Arg.action maps to MyClass.MyMethod(Arg)? I tried this:
<action name="My …
