Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected code samples syntax, updated some links.

...

Are you seeing this?

No Format

      org.apache.jasper.JasperException: Unable to compile
      class for JSP

      An error occurred at line: -1 in the jsp file: null

      Generated servlet error:
          [javac] Since fork is true, ignoring compiler
      setting.
          [javac] Compiling 1 source file
          [javac] Since fork is true, ignoring compiler
      setting. 

If so, here is are some solutions:

...

Anchor
Q6
Q6
How do I get a customized error page?

In web.xml ...

No Format

        <error-page>
            <error-code>404</error-code>
            <location>/error/404.html</location>
        </error-page>

...

Anchor
Q8
Q8
How do I configure Tomcat to NOT to store the sessions during shutdown?

Look at the Session manager component and tweak accordingly. One way is to tell tomcat to persist sessions to a path which does not exist. (So tomcat will not store, or be able to load the sessions)

Anchor
Q9
Q9
How do I disable tag pooling?

...