1.创建Springboot模块
ider--->file-->new-->project-->Spring lnitializr-->
不选择default 默认
-->选择custom定制网址
http://start.springboot.io/
2.配置模块基础信息
group 群组 --->com.itheima
artifact 名称路径-->springBootDemo
type 类型选择-->Maven Project
java Version java版本-->8
Package 包-->com.xxx
3.选择当前模块需要使用的技术集
next-->web-->springweb
4.测试Springboot是否正常使用
创建controller包和类
@RestController
@RequestMapping("/books")
public class BookController {
@GetMapping("/{id}")
public String getById(@PathVariable Integer id) {
System.out.println("id ==> " + id);
return "hello , spring boot! ";
}
}
5.使用自带的启动类 启动
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}