JSP页面在tomcat中永远缓存

时间:2012-01-12 11:26:37

标签: java jsp tomcat intellij-idea

我已完成此处提到的所有事情jsp page is cached, can not change it, tomcat,但仍然是同一页面。我还应该考虑什么?

1 个答案:

答案 0 :(得分:6)

如果使用<%@ include file="someother.jsp" %>,我建议touching父JSP以及包含的文件。

<%@ include file="file.jsp" %>包含编译时的文件。因此,除非更改父文件,否则不会强制重新编译。

但是,如果使用<jsp:include />,则包含是在运行时执行的,确保您始终获得新的副本。