可以使用EL在jsp中访问Java对象。
alert(${requestBean.getData()});
//This statement is throwing error JSPG0122e
包含了jstl库,对象requestBean具有值,使用Websphere v6.1。 什么可能是错误?
答案 0 :(得分:2)
WebSphere v6.1太旧了。它仅支持J2EE 1.4。您只能使用bean的属性,而不能使用EL中的任意方法。 Java EE 5(JSP 2.0)支持这一功能,自WebSphere 7.0以来。
如果你的bean中有get / setData方法,你可以尝试requestBean.data
。