步骤
1.创建springboot工程,并勾选web开发相关依赖
IDEA/文件/新建/模块/Spring Boot/ 改名什么的/确认
依赖项/Spring Boot 3.4.0(最新稳定版本)/Web/Spring Web/创建
2.定义HelloController类,添加方法hello,并添加注释,然后启动。
src/main/java/在软件包里新建一个包(control)包下放置相关请求处理类/找到启动类启动/浏览器输入网址localhost:8080/hello( @RequestMapping("/hello")//网址)
package com.itheima.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
//请求处理类
@RestController//请求处理
public class HelloController {
@RequestMapping("/hello")//网址
public String hello(){
System.out.println("Hello World~");
return "Hello World~";
}
}