fn 不支持 JSTL
当我使用 ${fn:contains()}"
时,它会导致以下异常:
org.apache.taglibs.standard.lang.jstl.parser.ParseException: EL functions are not supported
我怎样才能解决这个异常?
以及如果我需要下载更新版本的 jstl.jar & standard.jar任何人都可以给我发一个链接吗
?
when am using ${fn:contains()}"
it causes the following exception:
org.apache.taglibs.standard.lang.jstl.parser.ParseException: EL functions are not supported
How can i solve this exception?
and if I need to download a newer version of jstl.jar & standard.jar could any one send me a link?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我猜您正在尝试使用此表达式作为某些 JSTL 标记的属性:
如果是这样,请确保您导入了版本 1.1 的 JSTL taglib(注意 URI - 它应该包含
jsp
):I guess you are trying to use this expression as an attribute of some JSTL tag:
If so, make sure that you imported JSTL taglib of version 1.1 (note the URI - it should contain
jsp
):您还需要函数标签库声明。
You need the function tag library declaration also.
尝试 axtavt 的答案,如果仍然不起作用,请在 jsp 顶部添加
<%@ page isELIgnored ="false" %>
。Try axtavt's answer and if it is still not working, add
<%@ page isELIgnored ="false" %>
at the top of the jsp.