Changes in .jsp files are not taken in account
While changes to Javascript, CSS and images files are taken into account directly, JSP files are compiled by Jetty for performance reasons.
However, it is possible to switch the Jetty JSP servlet in development
mode in the
Mashup UI
web.xml
file located in
<DATADIR>/webapps/360-mashup-ui/WEB-INF/web.xml
.
To do so, edit the following section:
<!-- Enables development mode on JSP servlet --> <servlet> <servlet-name>jsp</servlet-name> <init-param> <param-name>development</param-name> <!-- SWITCH THIS TO TRUE TO GET YOUR JSP FILES RELOADED ON EACH REQUESTS --> <param-value>true</param-value> </init-param> </servlet>