maven The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path錯誤

lonecloud發表於2016-09-09

對於這個問題的話,請在pom檔案中加入

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

 

相關文章