HttpServletRequest 所需要的jar包

在开发maven 管理的Spring MVC 项目是,controller层需要用到 HttpServletRequest, 需要在 pom.xml 文件中引入 jar包:

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

这里 <scope>要设置成provided

猜你喜欢

转载自blog.csdn.net/alinekang/article/details/81060964