我已经做过这里提到的所有事情,缓存了jsp页面,tomcat不能更改它,但是仍然是同一页面。我还应该考虑什么?
如果使用<%@ include file="someother.jsp" %>,则建议touching使用父JSP以及随附的文件。
<%@ include file="someother.jsp" %>
touching
该<%@ include file="file.jsp" %>包括在编译时文件。因此,除非更改了父文件,否则不会强制重新编译。
<%@ include file="file.jsp" %>
<jsp:include />但是,如果使用,则会在运行时执行包含操作,以确保始终获得新副本。
<jsp:include />