第一步:打开idea创建项目
第二步:填写各个位置
第三步:选择springboot版本,并勾选对应的依赖
创建之后的目录的结构如下
第四步:在创建IndexController.java
相关代码如下
package com.learn.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("hello")
public class IndexController {
@RequestMapping("/helloworld")
public String index(){
return "hello world";
}
}
第五步:打开启动类,点击启动
控制台出现一下信息就显示启动成功了,没有报错
最后测试
在浏览器中输入
http://localhost:8080/hello/helloworld
体验项目到此结束