三 编写入口主程序org.springframework.boot spring-boot-starter-web 2.5.1
@SpringBootApplication
public class HelloMain {
public static void main(String[] args) {
SpringApplication.run(HelloMain.class,args);
}
}
四 编写Controller代码
@RestController
public class HelloController {
@RequestMapping("/hello")
public String hello(){
return "HelloWorld";
}
}
五 启动测试



