[Apache Struts Wiki] Updated: StrutsBeginnerValidatorFramework
Date: 2004-05-27T10:47:42 Editor: 80.131.212.75 <> Wiki: Apache Struts Wiki Page: StrutsBeginnerValidatorFramework URL: http://wiki.apache.org/struts/StrutsBeginnerValidatorFramework no comment Change Log: -- @@ -52,7 +52,9 @@ { return this.userName; } - +} + +}}} This form will contain one field called user name field, that is mandatory. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
How to make EL work with Struts?
Hi, EL is part of JSP2.x. It works fine before I installed Struts1.1. After that, EL doesn't work any more. Is that correct with Struts? I don't want to change all my prev jsp. How can I solve the problem? Thanks. James
Re: How to make EL work with Struts?
Probably want to be on the user list for this But if your web.xml is 2.2 or 2.3 servlet spec and you just want to drop the jstl and standard jars into you lib directory then stick this at the top of your jsp's <%@ page isELIgnored="false" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> ${foo} You dont need all the tag library stuff in you web xml either. On 27 May 2004, at 23:01, James Di Wu wrote: Hi, EL is part of JSP2.x. It works fine before I installed Struts1.1. After that, EL doesn't work any more. Is that correct with Struts? I don't want to change all my prev jsp. How can I solve the problem? Thanks. James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
RE: How to make EL work with Struts?
Hi Mark, It works. <%@ page isELIgnored="false" %> is the line required in JSP. Thanks. James -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 5:11 PM To: Struts Developers List Subject: Re: How to make EL work with Struts? Probably want to be on the user list for this But if your web.xml is 2.2 or 2.3 servlet spec and you just want to drop the jstl and standard jars into you lib directory then stick this at the top of your jsp's <%@ page isELIgnored="false" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> ${foo} You dont need all the tag library stuff in you web xml either. On 27 May 2004, at 23:01, James Di Wu wrote: > Hi, > EL is part of JSP2.x. It works fine before I installed Struts1.1. After > that, EL doesn't work any more. Is that correct with Struts? I don't > want to change all my prev jsp. How can I solve the problem? > > Thanks. > > James > - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
struts-faces target which v of struts
Currently there are several places in struts-faces where faces relies on deprecated methods in struts. Obviously this is not good for the long term compatibility of struts faces. Which version of the struts framework is the next point release of faces supposed to target? I am wondering because this is directly related to the patch I submitted yesterday. http://issues.apache.org/bugzilla/show_bug.cgi?id=29219 Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]