您的位置:首页 > 编程语言 > Java开发

Maven dependency spring-web vs spring-webmvc

2016-02-02 16:27 441 查看
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.1.2.RELEASE</version>
</dependency>

vs[/code]
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.1.2.RELEASE</version>
</dependency>


spring-web
provides core HTTP integration, including some handy servlet filters, Spring HTTP Invoker, infrastructure to integrate with other web frameworks and HTTP technologies (Hessian, Burlap)
VS
spring-webmvc
is an implementation of Spring MVC.
spring-webvc
depends on on
spring-web
, thus including it will transitively add
spring-web
. You don't have to add
spring-web
explicitly.[/code]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: