我正在使用Jboss 7.
我在项目中添加了一个servlet。
我在我的库中添加了servlet-api.jar
我已将servlet-api.jar
的依赖项添加到我的pom.xml中
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${version}</version>
</dependency>
但是,我仍然会收到错误
当我做maven时,包javax.servlet.annotation不存在 - &gt;安装
答案 0 :(得分:6)
您在javax.
的依赖项中缺少<artifactId>
。并且要记住,如果要使用注释,则servlet版本应为>3.0
。这是servlet 3.1
的依赖项。
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>