THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
- Stop Geronimo server if it is running;
- On the Servers view, double click the server to be configured. And select No re-deployment when only JSP files are updated on the result panel; A message window will pop up with instructions.
- Edit
<GERONIMO_HOME>/var/catalina/conf/web.xml
file and set the development attribute for JSP pages totrue
.Code Block xml xml title excerpt from web.xmlxml <servlet> <servlet-name>jsp</servlet-name> <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class> <init-param> <param-name>development</param-name> <param-value>true</param-value> </init-param> ... </servlet>
- After all is done, restart the server in Eclipse.