Loading... 使用 IDEA 新建项目,选择 Spring Initializr,类型选择 Maven,JDK版本选择19,Java版本选择17,打包方式选择JAR,点击下一步 ![][1] SpringBoot版本为3.11,依赖项勾选SpringWeb,点击创建 ![][2] 打开项目后,右键pom.xml文件,点击Maven,打开settings.xml文件 ![][3] 选择此文件,点击确定 ![][4] 添加阿里云镜像仓库 ![][5] <mirrors> <mirror> <id>aliyun</id> <!-- 中心仓库的 mirror(镜像) --> <mirrorOf>central</mirrorOf> <name>nexus-aliyun</name> <!-- aliyun仓库地址 以后所有要指向中心仓库的请求,都会指向aliyun仓库--> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror> </mirrors> 新建HelloWorld类 ![][6] 编写HelloWorld类 ![][7] package com.example.demo2; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloWorld { @RequestMapping("/hello") public String Hello(){ return "hello spring boot"; } } 点击运行 ![][8] 访问 http://127.0.0.1:8080/hello ![][9] [1]: https://img.crushta.cn/img/blog/article/39/springboot-01.png [2]: https://img.crushta.cn/img/blog/article/39/springboot-02.png [3]: https://img.crushta.cn/img/blog/article/39/springboot-03.png [4]: https://img.crushta.cn/img/blog/article/39/springboot-04.png [5]: https://img.crushta.cn/img/blog/article/39/springboot-05.png [6]: https://img.crushta.cn/img/blog/article/39/springboot-06.png [7]: https://img.crushta.cn/img/blog/article/39/springboot-07.png [8]: https://img.crushta.cn/img/blog/article/39/springboot-08.png [9]: https://img.crushta.cn/img/blog/article/39/springboot-09.png 最后修改:2024 年 01 月 19 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏