处理 javax.el.ELException: Failed to parse the expression 报错
Posted 随风如梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了处理 javax.el.ELException: Failed to parse the expression 报错相关的知识,希望对你有一定的参考价值。
在JSP的表达式语言中,使用了 <h3>是否新Session:${pageContext.session.new}</h3> 输出Session是否是新的,此时遇到了 javax.el.ELException: Failed to parse the expression 报错。这里主要是因为在Tomcat7中表达式的权限变小了,如果遇到JAVA的关键字,就会出现此种错误,在这个例子中就是因为 new 是JAVA的关键字,所以才会出错。
解决办法:设置启动参数 -Dorg.apache.el.parser.SKIP_IDENTIFIER_CHECK=true
我是用Idea开发,也可以如下设置:
以上是关于处理 javax.el.ELException: Failed to parse the expression 报错的主要内容,如果未能解决你的问题,请参考以下文章
Glassfish 4 - 使用 Hibernate 和 CDI @Transactional 的 TransactionRequiredException