Changeset 7612


Ignore:
Timestamp:
Mar 1, 2019, 10:59:05 AM (5 years ago)
Author:
Nicklas Nordborg
Message:

References #2152: Test BASE with Tomcat 9

Updated servlet-related JAR files to the latest shipped with Tomcat 9.0.16. A minor change was needed in the XJspCompiler implementation but it seems to work also in Tomcat 8 even after that.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/misc/compiler/net/sf/basedb/clients/web/extensions/XJspCompiler.java

    r5840 r7612  
    5252  </ul>
    5353 
    54   Note! This feature is still experimental. It has only been tested with
    55   some versions of Tomcat 6.0.x. This class depends on internal implementation
    56   details of Tomcat, and may or may not work with future or older versions
    57   of Tomcat.
     54  Note! This feature is experimental. We only test it at unregular intervals
     55  and since it depends on internal implementation details of Tomcat it may
     56  or may not work with future or older versions  of Tomcat.
    5857 
    5958  @author nicklas
     
    130129  */
    131130  @Override
    132   protected void generateClass(String[] smap)
     131  public void compile(boolean compileClass, boolean jspcMode)
    133132    throws FileNotFoundException, JasperException, Exception
    134133  {
     
    139138    }
    140139    setContextClassLoader();
    141     super.generateClass(smap);
     140    super.compile(compileClass, jspcMode);
    142141  }
    143142
Note: See TracChangeset for help on using the changeset viewer.