【发布时间】:2012-11-12 02:11:18
【问题描述】:
以下依赖有什么区别?
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.1.2.RELEASE</version>
</dependency>
对
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.1.2.RELEASE</version>
</dependency>
如果我单独包含spring-webmvc,则隐式添加spring-web。
我们什么时候应该单独使用spring-web?
【问题讨论】:
标签: spring maven spring-mvc