Spring Boot入门

Spring Boot入门:

使用IDEA创建Spring Boot 项目:

选择

Spring Boot入门

勾选Web

Spring Boot入门

生成项目结构:

Spring Boot入门

例子:

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"; } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpxpyd.html