在maven中找不到org.springframework.web.servlet

Zoh*_*qui 2 spring dependencies

我试图使用maven依赖下载org.springframework.web.servlet但是maven无法下载它.我想知道这个依赖是否存在于maven中

  <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>org.springframework.web.servlet</artifactId>
        <version>3.1.1.RELEASE</version>
    </dependency>
Run Code Online (Sandbox Code Playgroud)

或者spring已经改变了它的依赖性,或者我们可以使用它的一些替代依赖.请建议

Ale*_*der 7

所述 org.springframework.web.servlet被包含在在弹簧webmvc模块.使用此依赖项:

 <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>3.1.1.RELEASE</version>
</dependency>`
Run Code Online (Sandbox Code Playgroud)