<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8090</port>
<path>/</path>
</configuration>
</plugin>我报了A child container failed during start ->的错,tomcat启动失败,为什么??
1 回答
qq_落_5
TA贡献20条经验 获得超5个赞
你的这个和maven没关系吧
已经发布到tomcat上的某个项目的servlet过滤器配置错误。
如在web.xml下,将过滤规则定为“*”就是一种错误,需要更正为“/*”或者其他(但是必须要有“/”开头,表示当前项目)
添加回答
举报
0/150
提交
取消