JSPX EL 2.2 使用 EL 2.1 调用方法
我的 JSP 在 Tomcat 7 中工作正常,但在 Tomcat 6 中不起作用,我认为这是因为您无法从 EL 2.1 调用方法(除 getters/setter 之外)。
我需要调用的方法不能被命名为 getter。
I have JSP that works fine in Tomcat 7 but does not work in Tomcat 6 which I assume is the fact that you cannot call methods (other than getters/setter) from EL 2.1.
The method I need to call cannot be named as a getter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想出了一个解决方法,并认为我会发布答案:
如果安装了 Spring,则可以使用 Spring EL,以便可以调用对象上的方法
例如:
I figured out a workaround and thought I would post the answer:
If you have Spring installed you can use Spring EL so that you can call methods on objects
For example: