Java Mailing List Archive

http://www.junlu.com/

Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
JSP - A mailing list about Java Server Pages specification and reference
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
-none-

-none-

2007-09-06       - By Al Sutton

 Back
Here's a problem I've come across a couple of times and the solution I have
feels clunky so I thought I'd throw it out to see if anyone has any better
ideas;

I have a form which has a s:select populated from a Map of objects which
come from a database, at the moment I'm doing the following;

1) Action A gets the list from the database
2) A .JSP displays the form with the s:select and submits to Action B
3) Action B processes the form.

This is looks neat until you look at the situation when an error occurs.

In order to ensure that the s:select is correctly filled the error result
has to send the browser back to Action A, which is being done as a redirect.
The problem with this is that all actionMessages and actionErrors get lost
during the redirect, and thus the user can't see what was wrong. To get
around this I use the store interceptor, but this causes problems if
validation is turned on (it will bounce the user to the error result of
Action A if an errorMessage is present - see
https://issues.apache.org/struts/browse/WW-1963 for the bug report).

So I end up with the validation interceptor turned off and having to hand
code some validation, and the store interceptor turned on for several
actions.

So has anyone found a better way of handling the "populate list -> show list
-> handle errors" situation?

©2008 junlu.com - Jax Systems, LLC, U.S.A.