I’ve done all things mentioned here jsp page is cached, can not change it, tomcat, but still the same page. what else should I consider?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If using
<%@ include file="someother.jsp" %>, I suggesttouchingthe parent JSP as well as the included files.The
<%@ include file="file.jsp" %>includes files at compile time. So unless your parent file is changed, a recompilation is not forced.If you use
<jsp:include />however, the inclusion is carried out at runtime, ensuring that you always get a fresh copy.