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.其他

猜你喜欢

转载自www.cnblogs.com/taomin/p/10272349.html