文章目录
SpringBoot快速入门
新建空项目
确认maven版本
file-setting
创建新模块
springboot联网功能
项目创建成功
新建控制类(mvc)
package com.taotao.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* create by 刘鸿涛
* 2022/4/27 11:52
* Rest模式
*/
@SuppressWarnings({"all"})
//RestController=@Controller + @ResposeBody
@RestController
@RequestMapping("/books")
public class BookController {
@GetMapping
public String getById(){
System.out.println("springboot is running");
return "springboot is runing";
}
}
测试运行
Springboot自我总结
Springboot入门三问
- 你开发spring程序不写spring配置文件吗?不需要!
- 你不写配置文件你不写配置类吗?不需要!
- 那你说,你这都没有,你最起码要启动服务器吧?仍然不需要!
最简Springboot程序基础文件
Spring与SpringBoot程序对比
小结
注意事项
- 基于idea开发SpringBoot程序需要确保联网且能够加载到程序框架结构
- 下面是Springboot访问网址…