我有一个父 JSP,其代码看起来像
<jsp:include page='a.jsp' flush='true'/>
<jsp:include page='b.jsp' flush='true'/>
<jsp:include page='c.jsp' flush='true'/>
a.jsp
有一个我需要访问的 Java 对象c.jsp
有没有办法在不将任何代码从 a.jsp 移动到父 jsp 的情况下做到这一点?
这是 a.jsp 的样子:
<%@ page import="com.xxx.yyy.myClass" %>
<%
// Some processing here
%>
<table width="100%" cellspacing="0" class="scrollableTable">
<thead>
<tr>
<%
// Some processing here
w_myObject = myAPI.getmyObject(param1, param2);
// Some processing here
%>
</tr>
<!-- Display contents of w_myObject in subsequent rows of this table, here -->
</thead>
</table>
我想在 c.jsp 中访问 w_myObject