學習SpringMVC的過程中,在idea中使用maven管理依賴。在class中使用
javax.servlet.http.HttpServletRequest
的時候,報錯:cannot resolve symbol http。最后查詢發現,需要在maven中引入依賴:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>