maven新建web項目提示The superclass "javax.servlet.http.HttpServlet" was

在pom.xml中添加下面代碼來下載servlet-api:

<dependency>  
    <groupId>javax.servlet</groupId>  
    <artifactId>servlet-api</artifactId>  
    <version>2.5</version>  
    <scope>provided</scope>  
</dependency>

本文轉自:http://www.cnblogs.com/realvie/p/6353788.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章