产品: WebSphere Application Server
平台: 跨平台
软件版本: 3.5.x, 4.0.x
问题 为什么升级JSP1.0到1.1后使用<jsp:include>的jsp会出错?
解答 直接升级JSP1.0到1.1后,使用<jsp:include>的jsp会在运行时出错,这是因为在JSP1.0的规范中,对<jsp:include>,flush="true"是可选项,而在JSP1.1的规范中,flush="true"是必须的,所以对JSP1.1,请修改jsp中的<jsp:include>为:<jsp:include page="somepage.jsp" flush="true"/>。
|