I have a java server, when I change something within the JSP code, and I call the page again from the browser, my changes are not shown, the server returns the
JSP
You can try doing 2 things:
Set tag in web.xml
weblogic.jsp.pageCheckSeconds 0
In you Jsp page at the top:
<% response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP 1.0 response.setDateHeader ("Expires", 0); %>