我不熟悉使用jsp。但是,我正在使用一些无法正确输出的代码。
我正试图从
中获取价值 <c:if
test="${errorCode == 'EMPPNRDP_CU' || errorCode == 'EMPPNRNOTFOUND' || errorCode == 'EMPNOUPGRADES' || errorCode == 'SEATCHANGEFAILED'|| errorCode == 'NO_RESPONSE_FIRST_ATTEMPT' || errorCode == 'NO_RESPONSE_SECOND_ATTEMPT'|| errorCode == 'UPDATEFQTVFAILED' }">
<% System.out.println('test') %>
<jsp:include page="footer.jspf">
<jsp:param name="buttons_primary" value="continue" />
<jsp:param name="class" value="primary" />
</jsp:include>
</c:if>
我一直在搜索debuggin和logging方法,似乎没有这样做,因为它丢掉了我的IDE。
<% System.out.println('test') %>
这是抛出错误而不是打印测试。我正在尝试找到正确的格式,以便我可以获取errorCode并查看为什么jspf文件没有显示在屏幕上。