记录使用jstl时常遇到的问题及解决方法
1、环境:tomcat5.0.28
jstl_1.1.2.jar
standard-1.1.2.jar
现象:使用el标签,如:<c:out value="${now}">时报错
According to TLD or attribute directive in tag file, attribute value does not accept any expression
解决方法:
1)更改web.xml里标签的url为:
http://java.sun.com/
jsp/jstl/core
http://java.sun.com/
jsp/jstl/fmt
ps:以前在别的环境下用这种方式可以解决,但在这里没有解决上述的问题
2)修改要使用el标签的tld文件,如:c.tld,fmt.tld
全局替换
find: <rtexprvalue>false</rtexprvalue>
replace:<rtexprvalue>true</rtexprvalue>
posted on 2006-08-24 10:11
简易 阅读(297)
评论(0) 编辑 收藏