Tomcat报failed to parse the expression [${xxx}]异常(javax.el.ELException)的解决方法

Posted HPUCL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tomcat报failed to parse the expression [${xxx}]异常(javax.el.ELException)的解决方法相关的知识,希望对你有一定的参考价值。

Tomcat 7 ‘javax.el.ELException‘ 的解决方式
tomcat 7对EL表达式的语法要求比较严格,例如"${owner.new}"因包含关键字new就会导致解析出错。
问题是出来了,怎么解决呢?有三种,如下:
第一种:严格遵守java规范,修改对象的属性名称,要求不包含java关键字;
第二种:修改EL表达式,例如"${owner.new}"可以修改为"${owner[‘new‘]}";
第三种:修改tomcat属性,忽略对EL表达式的关键字检查。修改$CATALINA_BASE/conf/catalina.properties文件,添加org.apache.el.parser.SKIP_IDENTIFIER_CHECK=true选项。

 

原文出自:http://blog.csdn.net/zwx19921215/article/details/36896865






以上是关于Tomcat报failed to parse the expression [${xxx}]异常(javax.el.ELException)的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

Execption:com.mysql.cj.exceptions.WrongArgumentException: Malformed database URL, failed to parse th

elasticsearch创建索引报[type=mapper_parsing_exception, reason=Failed to parse mapping [_doc]......

Tomcat启动报错 Failed to start component [StandardServer[8005]]解决

tomcat启动报错failed to start component

ElasticSearch为索引库添加静态映射报:Failed to parse mapping [properties]: Root mapping definition has unsupport

tomcat运行报错Failed to start component [StandardEngine[Catalina].StandardHost[localhost].