Tomcat 7 “SEVERE: A child container failed during start”

后端 未结 18 1746
别跟我提以往
别跟我提以往 2020-11-27 03:42

Basically, I\'ve written a springMVC application (with a relatively shotgun my way first-timer approach with regards to Spring). The project works fine on Tomc

18条回答
  •  余生分开走
    2020-11-27 04:38

    As a generic solution, I recommend that you remove all the secondary dependencies and run the application, if it worked, revert back some, and continue doing the same as long as the application starts, in the end, you will be able to identify which dependency caused the issue.

    Using the same way, for example, I found that dependencies whose the groupId is: org.apache.axis2 have caused the issue.

     
            org.apache.axis2
            axis2-transport-local
            1.6.1
     
     
            org.apache.axis2
            axis2-transport-http
            1.6.1
     
    

提交回复
热议问题