Changes between Initial Version and Version 1 of Ticket #1670
- Timestamp:
- Mar 14, 2012, 9:26:23 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1670
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #1670 – Description
initial v1 1 1 The current implementation set the file date to the last modified date found in the JAR file. The problem is that this approach may cause Tomcat to not detect file changes since the compiled class in the work-directory may have a newer date (for example, due to a server restart). 2 2 3 The workaround is to always restart Tomcat after updating an extension. 3 One workaround is to always restart Tomcat after updating an extension. Another option is to manually 'touch' the JSP files belonging to the extension. Something like: 4 5 {{{ 6 cd <base-dir>/www/extensions/foo.jar 7 touch *.jsp 8 }}}