JSP 请求参数在包含 Weblogic 的 jsp 上返回 null
我在使用 jsp:include 标记时遇到问题。我有如下代码:
<jsp:include page="./Address.jsp">
<jsp:param value="30" name="tabIndex"/>
<jsp:param value="true" name="showBox"/>
<jsp:param value="none" name="display"/>
</jsp:include>
该页面包含得很好,但是当我尝试访问 Address.jsp 页面上的参数时,它们为空。我尝试通过以下方式访问它们(使用 jstl):
<c:out value="${param.tabIndex}" />
<c:out value="${param['tabIndex']} />
<%= request.getParameter("tabIndex") %>
<c:out value="${pageScope.param.tabIndex} />
${param.tabIndex}
等等...
这是关键,上面的内容在 tomcat 5.5 中工作正常。但是,当我在 Weblogic 10 中部署该应用程序时,却没有。
此外,该代码在我的应用程序的其他区域(在 weblogic 上)运行良好,只是不是特定页面。
有什么想法吗?
谢谢!
I am having trouble with the jsp:include tag. I have code like the following:
<jsp:include page="./Address.jsp">
<jsp:param value="30" name="tabIndex"/>
<jsp:param value="true" name="showBox"/>
<jsp:param value="none" name="display"/>
</jsp:include>
The page is included fine, but when I try to access the parameters on the Address.jsp page, they are null. I have tried accessing them the following ways (with jstl):
<c:out value="${param.tabIndex}" />
<c:out value="${param['tabIndex']} />
<%= request.getParameter("tabIndex") %>
<c:out value="${pageScope.param.tabIndex} />
${param.tabIndex}
etc...
Here is the kicker, The above works fine in tomcat 5.5. However, when I deploy the application in Weblogic 10, it does not.
Also, the code works fine in other areas of my application (on weblogic) just not a particular page.
Any Ideas?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
Try this