using ${something} expressions in jsp

hello,i'm writing a small web application using struts, hibernate, tomcat, my problem is that expressions ${some_formbean_property} written in jsp stay in html code to, they should be replaced with value of the property, what i have to do to fix it?thanks a lot
[283 byte] By [blafa] at [2007-10-2 5:30:50]
# 1

${expr} in jsp requires two things

1 - A JSP2.0 container - eg Tomcat 5. In a JSP1.2 container you can only use EL in the JSTL tags.

2 - Your web.xml file must declare itself as being version 2.4

http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0

reply 6

evnafetsa at 2007-7-16 1:41:50 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
so if i use tomcat 5, i can use el expressions in jsp tags only or in all tags i use in jsp (struts tags, valuelist tags, spring tags,...)?
blafa at 2007-7-16 1:41:50 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

In a JSP2.0 container, ${expr} is a runtime expression.

if you use tomcat 5, and declare your web.xml as version 2.4, you can use ${expr} anywhere that you can use <%= expr %>

So you can use it anywhere in template text, and also as an attribute to any tag that takes a runtime expression.

evnafetsa at 2007-7-16 1:41:50 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...