通过SpringBoot官网创建SpringBoot项目
前言
SpringBoot项目如果没有合适的IDE是无法创建的,这个时候可以通过SpringBoot官网创建Boot项目,然后再导入进IDE中(例如:IDEA)
SpringBoot官方网站
在官网上创建的步骤
1.打开SpringBoot官网,下划至底部
2.创建SpringBoot项目
3.将解压后的项目导入进IDE即可
提供controller代码
直接复制到编写好的xxxController中即可,省去编写的时间,提升效率。
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/books")
public class BookController {
@GetMapping("/{id}")
public String getById(@PathVariable Integer id) {
System.out.println("id ==>" + id);
return "hello, SpringBoot!";
}
}