关于JSP中使用EL表达式遇到的错误Property 'productId' not found on type com.imooc.hello.Product

来源:互联网 发布:软件测试英文工作报告 编辑:程序博客网 时间:2024/06/05 12:35

Property 'productId' not found on type com.imooc.hello.Product

这个错误翻译为:在com.imooc.hello.Product类中找不到 ‘productId’这个属性,

也就是说在我的jsp中使用${requestScope.product.productId}的时候找不到productId这个属性,

但是我反复对照了一下我的dao层的Product类,明明有这个属性。

查了百度,看他们提到了类的 get和set方法,然后想到自己是改过属性的名字的,但我的get和set方法名并没有也跟着改掉,

果然,把get和set方法接着的属性名改掉(比如,在改属性改成productId时,set方法名改为setproductId)。

就能成功使用EL表达需要的属性了。

0 0
原创粉丝点击