赞
踩
系统:Win10
JDK:1.8.0_333
IDEA:2022.2.4
SpringBoot:2.7.6
打开 IDEA 软件,选择 Projects 模块,点击 New Project 按钮
这里的 ServerURL 我改为了阿里的服务器,国内网络使用 SpringBoot 官网构建项目可能会很卡甚至直接失败
阿里的Server URL:https://start.aliyun.com
这里的 SpringBoot 版本,选择一个正式版本即可,我选的 2.7.6
依赖也只选了 Spring Web,后续需要其他依赖直接在 pom 里添加就好了
删掉这几个暂时没用的文件和目录
在 com.lijinjiang.demo 目录下创建 controller 目录,在该目录下创建 TestController 测试控制器,然后如下写一段测试代码
package com.lijinjiang.demo.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * @Description 测试控制器 * @Author 03010430 * @ModifyDate 2023/2/3 13:38 */ @RestController public class TestController { @GetMapping("/index") public String index(){ return "Hello SpringBoot!"; } }
双击打开DemoApplication类,点击如图绿色箭头,选择第一个运行程序
控制台如图所示则代表运行成功,使用的默认端口 8080
这时我们打开浏览器,输入访问地址:http://localhost:8080/index
就可以发现该 SpringBoot 项目已经成功访问了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。