maven配置springboot版本报红

版本问题
之前2.2.0等版本试了都爆红,2.4.4就好了,2.4.4是最新稳定版本,应该是用最新稳定版本就好了(我用的阿里镜像maven)

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.4.4</version>
    <relativePath/> <!-- lookup parent from repository -->
  </parent>

猜你喜欢

转载自blog.csdn.net/WA_MC/article/details/115262367