javax.servlet.jsp.el.ELException: Encountered ""\n", expected one of [, , , "tr

我们在web项目开发中,如果你的JSP页面引用了JSTL标签后展示以下信息
javax.servlet.jsp.el.ELException: Encountered ""\n", expected one of [, , , "true", "false", "null", "(", "-", "not", "!", "empty", ]
你很可能是在使用myeclipse编辑JSP页面时不小心进行了格式化,或者写JSTL表达式的时候出现了回车或者换行比如${fn:length(c.ctrlDcrp) gt 100 ?"...":""}写成了
${fn:length(c.ctrlDcrp)
gt 100 ?"...":""}这种格式,那么在tomcat下可能通过但是weblogic 或者websphere下就会报这种错误

你可能感兴趣的:(jsp)