Changes between Initial Version and Version 1 of Ticket #1670


Ignore:
Timestamp:
Mar 14, 2012, 9:26:23 AM (12 years ago)
Author:
Nicklas Nordborg
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1670

    • Property Owner changed from everyone to Nicklas Nordborg
    • Property Status newassigned
  • Ticket #1670 – Description

    initial v1  
    11The 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).
    22
    3 The workaround is to always restart Tomcat after updating an extension.
     3One 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{{{
     6cd <base-dir>/www/extensions/foo.jar
     7touch *.jsp
     8}}}