Tomcat startup logs - SEVERE: Error filterStart how to get a stack trace?

后端 未结 16 862
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-07 11:50

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          


        
相关标签:
16条回答
  • 2020-12-07 12:20

    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.

    0 讨论(0)
  • 2020-12-07 12:20

    This did the trick for me:Just remove all the libraries and then compile and run. It would prompt their are errors in your project confirm. Rerun the project after applying the libraries.

    0 讨论(0)
  • 2020-12-07 12:21

    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
    
    0 讨论(0)
  • 2020-12-07 12:21

    Run Following command to show catalina logs on the terminal---

    sh start-camunda.sh; tail -f server/apache-tomcat-8.0.24/logs/catalina.out
    
    0 讨论(0)
提交回复
热议问题