spring-boot入门总结

1.org.springframework.web.bind.annotation不存在

错误的pom.xml

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
</dependency>  

正确的pom.xml

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

 

2.其他

posted @ 2019-01-15 15:45  taomin  阅读(100)  评论(0编辑  收藏  举报