Changeset 7612
- Timestamp:
- Mar 1, 2019, 10:59:05 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/misc/compiler/net/sf/basedb/clients/web/extensions/XJspCompiler.java
r5840 r7612 52 52 </ul> 53 53 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. 58 57 59 58 @author nicklas … … 130 129 */ 131 130 @Override 132 p rotected void generateClass(String[] smap)131 public void compile(boolean compileClass, boolean jspcMode) 133 132 throws FileNotFoundException, JasperException, Exception 134 133 { … … 139 138 } 140 139 setContextClassLoader(); 141 super. generateClass(smap);140 super.compile(compileClass, jspcMode); 142 141 } 143 142
Note: See TracChangeset
for help on using the changeset viewer.