Spring Boot入门:
使用IDEA创建Spring Boot 项目:
选择
勾选Web
生成项目结构:
例子:package com.example.testboot; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @GetMapping("/hello") public String say(){ return "hello"; } }