Quelle est la différence entre les dépendances suivantes?
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.1.2.RELEASE</version>
</dependency>
contre
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.1.2.RELEASE</version>
</dependency>
Si j'inclus spring-webmvc
seul, alors spring-web
est ajouté implicitement.
Quand devrions-nous utiliser spring-web
seul?