Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I start Tomcat I get the following error:

Jun 10, 2010 5:17:25 PM org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
Jun 10, 2010 5:17:25 PM org.apache.catalina.core.StandardContext start
SEVERE: Context [/mywebapplication] startup failed due to previous errors

It seems odd that the logs for Tomcat would not include a stack trace. Does somebody have a suggestion for how to increase the logging in Tomcat to get stack traces for errors like this?

share|improve this question
I am using Guice-Servlet and by doing a try/catch around my setup method for this framework I was able to catch all exceptions and rethrow them after logging myself. I still had to blindly debug getting Guice-Servlet's filter to work but anything added to that seems to just work. – Benju Jun 21 '10 at 16:54
1  
It appears that stack traces goto stdout but Intellij does not read the stdout for Tomcat. tomcat.apache.org/tomcat-6.0-doc/logging.html I need make stdout in tomcat redirect to a file so Intellij can view it. – Benju Jun 22 '10 at 19:28
This is not an answer to your question, but I solved my problem (with the same error message) by removing xercesImpl.jar and xml-apis.jar from common/endorsed. I believe it was Struts2 that failed to start. – Arne Evertsson Nov 7 '10 at 12:53

9 Answers

Check the localhost_yyyy_mm_dd.log logs that Tomcat creates, these typically store that type of info. I wouldn't expect the full stacktrace to be dumped to standard out.

share|improve this answer
My instance of Tomcat 5.5 doesn't write that file. – Arne Evertsson Nov 7 '10 at 11:52
1  
Up to this moment "error filterStart" has plagued my nightmares...NO LONGER! You rock! – Cody S Oct 1 '12 at 17:16
One of these things you're glad to discover during development. Thanks so much. – Francisco Lozano Jan 17 at 13:04

create a file named logging.properties in WEB-INF/classes with following content:

org.apache.catalina.core.ContainerBase.[Catalina].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].handlers = java.util.logging.ConsoleHandler
share|improve this answer

Tomcat does log the stacktrace, but it is not always clear where the log files are, when tomcat is started from an IDE. When I start it from IntelliJ, CATALINA_BASE is set to ${home}/.IntelliJIdea10/system/tomcat/Unnamed_r6-idea, and the log files are in in [CATALINA_BASE]/logs.

To see the logs, either locate the log files, or edit [CATALINA_HOME]/conf/logging.properties to direct tomcat logger output to console. Below I added a second handler to the default tomcat configuration:

 org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
 org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler

Now the full stacktrace appears in the IntelliJ output:

 Dec 27, 2011 12:02:45 PM org.apache.catalina.core.StandardContext filterStart
 SEVERE: Exception starting filter filterChainProxy
 org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'filterChainProxy' is defined   at
 org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:529)
 . . .
share|improve this answer

Maybe your application is compiled with a different JRE than Tomcat.

Check java -version on your server and then compile your code with the same version. I had the error because my Eclipse standard JRE was 1.6 and Tomcat used 1.5 - this can't work.

share|improve this answer

Setting up log4j logging for Tomcat is pretty simple. The following is quoted from http://tomcat.apache.org/tomcat-5.5-doc/logging.html :

  1. Create a file called log4j.properties with the following content and save it into common/classes.

              log4j.rootLogger=DEBUG, R 
              log4j.appender.R=org.apache.log4j.RollingFileAppender 
              log4j.appender.R.File=${catalina.home}/logs/tomcat.log 
              log4j.appender.R.MaxFileSize=10MB 
              log4j.appender.R.MaxBackupIndex=10 
              log4j.appender.R.layout=org.apache.log4j.PatternLayout 
              log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n
    
  2. Download Log4J (v1.2 or later) and place the log4j jar in $CATALINA_HOME/common/lib.

  3. Download Commons Logging and place the commons-logging-x.y.z.jar (not commons-logging-api-x.y.z.jar) in $CATALINA_HOME/common/lib with the log4j jar.
  4. Start Tomcat

You might also want to have a look at http://wiki.apache.org/tomcat/FAQ/Logging

share|improve this answer
Will this cause deploy exceptions to actually properly log? – Benju Jun 21 '10 at 16:45
Yes. I've used this exact method do find causes of problems during deployment. – Tom Jun 21 '10 at 19:27
1  
I'm sorry but the log file is impenetrable with a log level of DEBUG. It does contain a few exceptions that doesn't seem to have anything to do with the problem - which I suspect is a Struts problem in my case. – Arne Evertsson Nov 7 '10 at 12:23

We also got the same error: SEVERE: Error filterStart

After a day's effort, we found the issue was in conf/web.xml because of a wrong filter entry. Check tomcat's conf/web.xml. See if there are any invalid entries.

share|improve this answer

Just wanted to contribute after spending the last hour on a nearly identical problem. My solution was that somehow our applicatons .jar was corrupted, so placing the jar from our dev server provided a fix.

share|improve this answer

if anyone is getting error like SEVERE: Error filterStart Apr 29, 2013 4:49:20 PM org.apache.catalina.core.StandardContext startInternal SEVERE: Context [/TraceMW] startup failed due to previous errors

then please check whether your tomcat/lib directory contains cors-filter-1.5.jar or not. if you dot have u will get above error and ur application will not be available.

So, i just managed to copy the jar file from other tomcat folder and i didnt get the above mentioned error later.

share|improve this answer

I had a similar issue. Renato's tip worked for me. I used a older version of java class files (under WEB-INF/classes folder) and the problem disappeared. So, it should have been the compiler version mismatch.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.