maven项目出现Xxx is not a Servlet的问题
Posted alexfung
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven项目出现Xxx is not a Servlet的问题相关的知识,希望对你有一定的参考价值。
应该是tomcat的jar包和maven的jar包冲突
在pom.xml中找到
<dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-servlet-api</artifactId> <version>7.0.47</version> </dependency>
在其中加入
<scope>provided</scope>
最后:
<dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-servlet-api</artifactId> <version>7.0.47</version> <scope>provided</scope> </dependency>
以上是关于maven项目出现Xxx is not a Servlet的问题的主要内容,如果未能解决你的问题,请参考以下文章
解决使用maven的java web项目导入后出现的有关问题 -cannot be read or is not a valid ZIP file
关于 Tomcat 6.0:"XXX" does not exist or is not a readable directory 问题的解决办法
Eclipse Android项目 为控件添加了Id,但是在Java代码中提示xxx cannot be resolved or is not a field
解决IDEA报错Could not autowire. There is more than one bean of 'xxx' type
Git拉取分支报错(fatal:‘XXX' is not a commit and a branch ‘XXX' cannot be created from it)
maven error: 用maven下载的spring jar包出现该异常 cannot be read or is not a valid ZIP file