Maven
Maven可以方便管理依赖的 Jar 包
IDEA 自带Maven,也可以选择自己安装
安装Maven:https://blog.csdn.net/qq_59636442/article/details/142314019
创建项目
通过Spring Initializr
快速创建项目:https://start.springboot.io/
我的项目名叫blog
,可以自己修改
创建HelloController
package com.example.blog;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;// 注解说明:处理 Http 请求
@RestController
public class HelloController {// 路由请求 可以设置各种操作方法@RequestMapping(value="/hello",method = RequestMethod.GET)// @GetMapping、@PostMapping、@PutMapping、@DeleteMapping 是 @RequestMapping 的子集// 选择一种使用// @GetMapping("/hello")public String hello() {return "Hello World!";}
}
浏览器访问:http://localhost:8080/hello
可以看到
下一步(MySQL
的增删改查)
SpringBoot MySQL的增删改查:https://blog.csdn.net/qq_59636442/article/details/143890303