Javax.el.ELException:无法分析表达式



我正在尝试从Tomcat 6切换到8。

JSP文件:

<h1><c:if test="${#article.category.name != '' && #article.category.name != null}"><s:property value="article.category.name" />: </c:if><s:property value="article.title"></s:property></h1>

例外:

org.apache.jasper.JasperException:文件:/help.jsp(行:75,列:20) "${#article.category.name!=''&&#article.cactory.name=null}"包含无效表达式:javax.el.ELException:未能解析表达式[${#article.category.name!="&&#article.cotegory.nname!=null}]

删除article.category.name.前面的磅号(#)

这应该对你有用:

<h1><c:if test="${article.category.name != '' && article.category.name != null}"><s:property value="article.category.name" />: </c:if><s:property value="article.title"></s:property></h1>

相关内容

  • 没有找到相关文章

最新更新