Tomcat

1. Tomcat

Tomcat is an Open Source web server.

Tomcat is a Servlet/JSP Container.

2. Directory Listing

To turn it off, edit conf/web.xml in the tomcat directory

              <init-param>
                  <param-name>listings</param-name>
                  <param-value>false</param-value>
              </init-param>
    
By default the setting is 'true'

3. Attribute value is quoted with " which must be escaped when used within the value

You can escape your attributes with ' or maybe \"

Otherwise use the JVM parameter -Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

4. Links