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
Subject: Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Subject: 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
 
Struts
Page 23 of 788 Previous 10   21   22   23   24   25   26   27   28   29   30   Next 10   Next 100  

override conversion error for nested properties in struts 2

I 'm having trouble overriding conversion errors for nested properties in struts 2. I 've read the webworks documentation about overriding conversion errors for nested properties and it suggests to add

ResourceBundle Search Order

On the following page it describes how you can create hierarchical i18n files and Struts will scan the hierarchy for appropriate messages. http //struts.apache.org/2.x/docs/internationalization.htm

global exception handling - struts sometimes ignores my setting in struts-co

Struts isn 't catching this exception because you 're throwing it in a JSP page which is being accessed outside the Struts servlet (directly via a URL). Try throwing the exception in a Struts action an

Get an error message using <html:errors... > but not print it?

Hi I have searched but found nothing about this. How can I fetch an specific error using <html errors property "something " > without printing it to the page? Or somehow check if it exists? I want th

Struts 2 - woodstock JSF components

Hi Has anyone tried integrating the woodstock JSF components (Sun 's RI ) into Struts 2 ? r-a-v-i

JSF Woodstock components in Struts 2

Has anyone tried integrating the woodstock JSF components in Struts 2 ? I tried but not much luck. Thanks r-a-v-i

global exception handling - struts sometimes ignores my setting in struts-config

i need to configure struts to display user a errpage.jsp when runtime exception CustomException occur anywhere in the application. i 've added to struts-config <global-exceptions > <exception key "

javax.servlet.jsp.JspException: No getter method for property:

Make sure you 're not redirecting. You will lose request attributes if you do so. On 8/13/07 andihartmann@(protected) <andihartmann@(protected) > wrote > > Hello! > > I 'm getting a currious errormessag

javax.servlet.jsp.JspException: No getter method for property: "err

Hello! I 'm getting a currious errormessage which I 'm not understanding with the background written later on javax.servlet.jsp.JspException No getter method for property "errorm " of bean "camp "

Conditional + visitor validation - for nested objects -- so far..

So far i 've been able to define the actual validation on the domain attribute addressline1 by putting @(protected) on the setters of all objects that contain it (ie application primaryapp

2 Select Boxes, one based on the other

I apologize profusely for what has got to be a FAQ but I can 't find reference to this at all either Googling or in my message archives. I have the classic problem of 2 select boxes and the values

Showcase

Has anyone been able to get the tree select "selection " to work? http //www.planetstruts.org/struts2-showcase/tags/ui/showDynamicTreeAction.action Selecting a tree node does not invoke the action cl

Evaluating a javascript expression in order to set the readonly attribu

--- Session A Mwamufiya wrote > <s textfield name "name " label "Name " > readonly "if(%{editingFlag true}){return 'true '} "/ > > > but the textfield is not readonly and the page > source reflects it.

Re: Calling Struts Validation framework explicitly from WebServices

Look at Apache commons-validator... asking the question in many different ways will not generate significantly different answers. http //commons.apache.org/validator/ d. --- Prashant Baviskar <Pras

RE Evaluating a javascript expression in order to set the readonly attribute

In your Action add an String attribute named editingFlag with a getter and a setter. Set the value ( "true " or "false ") of editingFlag in the method forwarding to your JSP. In the JSP <s textfiel

what is your practice to do Sidebar thing??

May I know what is your practice to do Sidebar thing? here the sidebar means a block lets say on the left side showing login form for guest user and showing user menu for logged in user. <s include >

How to know if an element of a list belongs to another list using Struts2 tags?

Hi all! I 'm iterating over two list and I need to shown if an element of the second list belongs to the first. Something like that iterator list1 print list1.actualElement.attributes... itera

Calling Struts Validation framework explicitly from WebServices

Hi I have a struts application. I am separating business logic from presentation logic & going to expose this business logic as web-service. I want to explicitly call validation framework of st

Evaluating a javascript expression in order to set the readonly attribute

Hi I would like to set a textbox to readonly when a flag is set in my action. I have the following jsp call <s textfield name "name " label "Name " readonly "if(%{editingFlag true}){return 'true '} "

getting user selection from a <s:optiontransferselect > object

Hi I 've been stuck trying to capture in my action the set of elements placed in one of the lists of an <s optiontransferselect > tag. I can refer to the selected element in the list by using the n

How exactly It happens !!!!!!!

Hi I am new to struts. Can any one explains when we submit the form How the struts-config.xml is read How form bean is populated > > > > >How validator plug-in is read from deployment descripto

Subject: */* Wildcard in Action

Hi I 've followed the examples in the InfoQ-Book "Starting Struts2 " regarding CRUD. But there is an issue with the following action <action name ???*/*??? method ???{2}??? class ???com.infoq.action

Use of Struts Validation outside struts framework

Hi I have validation.xml & validator-rules.xml & many other validation rules files in my existing struts application. I have other desktop application which has same fields like forms in the struts

RE [S2] autowiring with hand rolled factory

Did you set this in your struts.xml ? <constant name "struts.objectFactory " value "spring " / > or <constant name "struts.objectFactory " value "org.myorg.mySpringContextFactory " / > For Autowiring

Subject: switch action - doubt

Hi I have 2 war files added to an EAR. Both of them have a different context root. Eg. Module A has test1 as the context root and Module B has test2 I did the following in the struts-config of Module

RE taking control of the struts 2 layout in a jsp

Hi Copy the struts.jar templates into your application (at the root WebContent/templates for exemple) and modify the WebContent/template/simple/*.ftl files at your convenience. "Session A

RE Preventing validation when form is first displayed

Hi I had the same problem and added in my struts.xml <interceptor-ref name "validation " > <param name "excludeMethods " >execute input back cancel browse detail delete goAd

Preventing validation when form is first displayed

Hi I have an action that is validateable and uses the validate method to ensure that an element isn 't added to the database if it already exists in there. Unfortunately the validation occurs as soo

taking control of the struts 2 layout in a jsp

Hi Struts displays the jsp objects the way it likes for example aligning buttons on the right even if I put them inside a <div align "left " > </div > tag. Is there a way to take control of how the l

Re: Struts tile and other tag includes

yeah I know but we can use cobol to program cgi instead of java too On 8/12/07 Dave Newton <newton.dave@(protected) > wrote > > Then how do you figure it 's been deprecated? It 's the > only thing tha
Page 23 of 788 Previous 10   21   22   23   24   25   26   27   28   29   30   Next 10   Next 100