luehe 2003/09/23 13:06:07 Modified: catalina/src/share/org/apache/catalina/startup TldConfig.java Log: improved javadocs Revision Changes Path 1.27 +10 -3 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/TldConfig.java Index: TldConfig.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/TldConfig.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- TldConfig.java 23 Sep 2003 19:47:52 -0000 1.26 +++ TldConfig.java 23 Sep 2003 20:06:07 -0000 1.27 @@ -724,16 +724,23 @@ } /** - * Returns a map of the paths to all JAR files accessible to the webapp. + * Returns a map of the paths to all JAR files that are accessible to the + * webapp and will be scanned for TLDs. * - * The map includes the JARs under WEB-INF/lib as well as those in the - * classloader delegation chain of the webapp's classloader. + * The map always includes all the JARs under WEB-INF/lib, as well as + * shared JARs in the classloader delegation chain of the webapp's + * classloader. * * The latter constitutes a Tomcat-specific extension to the TLD search * order defined in the JSP spec. It allows tag libraries packaged as JAR * files to be shared by web applications by simply dropping them in a * location that all web applications have access to (e.g., * <CATALINA_HOME>/common/lib). + * + * The set of shared JARs to be scanned for TLDs is narrowed down by + * the list of JARs specified as the value of the <tt>noTldJars</tt> + * property in catalina.properties, which are known not to contain any + * TLDs. * * @return Map of JAR file paths */
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]