首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

javax.el.PropertyNotFoundException: Property 'hasNextPage' not found on type.

2013-10-27 
javax.el.PropertyNotFoundException: Property hasNextPage not found on type...问题:javax.el.Proper

javax.el.PropertyNotFoundException: Property 'hasNextPage' not found on type...

问题:javax.el.PropertyNotFoundException: Property 'hasNextPage' not found on type Page

在使用JSTL的EL表达式时,使用page.hasNextPage时,报了以上错误。但实际上Page这个类中确实有hasNextPage这个方法。

?

?

解决:

从网上查了一些资料,有人说这是因为Tomcat环境下,EL表达式只能识别以get开头的方法。然后试了试,在Page类中将hasNextPage方法名改成gethasNextPage,然后再使用page.hasNextPage时果然没有报错了。但是,是不是因为tomcat环境造成的却不得而知,因为也没在别的类型的服务器上试过。

热点排行