maven配置spring-webmvc的问题

pom.xml里已经配置了:

 <dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.1.7.RELEASE</version>
</dependency>

为什么
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
这三句还是找不到包?

不过可以找到import org.springframework.web.bind.annotation.support.*;

<dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
    </dependency>


org.springframework
spring-web


org.springframework
spring-web
4.1.7.RELEASE


org.springframework
spring-webmvc
4.1.7.RELEASE