javax.el.PropertyNotFoundException:

javax.el.PropertyNotFoundException: Property 'ContextPath' not found on type org.apache.catalina.core.ApplicationHttpRequest

在javabeans命名规范中不允许第一个字母大写第二个字母小写,建议方法改写成小写字母开头

test="${!empty sessionScope.car.items} " 错误

正确的写法如下所示:
test="${!empty sessionScope.car.items}"
在双引号之间不能出现空格之类的东西
在 el表达式的后面不允许出现空格之类的
原文地址:https://www.cnblogs.com/XMMDMW/p/5516171.html