一、@Controller 处理http请求
1、结合模版组件返回页面,spring-boot提供了spring-boot-starter-thymeleaf组件
2、结合@ResponseBoy返回JSON
二、@RestController
Spring4新增的注解,等同于@Controller + @ResponseBody,返回JSON
三、@RequestMapping 处理url路由
1、value 绑定路径,可设置集合绑定多个;method限制请求方法
2、传入参数的处理
a、@PathVariable 注解获取url中的数据
b、@RequestParam 获取请求中的参数的值,查询字符串
c、@GetMapping 、@PostMapping等,组合注解,等同于@RequestMapping + 特定请求方式的简化
疑问:如何获取Post请求体中数据、json等?
时间: 2024-11-09 18:31:20