1.GetMapping和PostMapping 和 @RequestMapping的区别

//GetMapping只能通过get请求。public class Hello1{@GetMapping("hello1")public String h1(){return "1";}//PostMapping只能通过post请求,需要输入参数。public class Hello2{@PostMapping("hello2")public String h2(){return "2";}}//RequestMapping可以请求post和get,RequestMapping可以放在//类上面,也可以放在方法上面。GetMapping和PostMapping只能放在方法上。public class Hello3{@RequestMapping("hello3")public String h3(){return "3";}}//只能get请求@RequestMapping(value = "hello4",method = RequestMethod.GET)public class Hello4{public String h4(){return "4";}}

2.RequestBody 和ResponseBody的区别
方向不同:@RequestBody 是用于从客户端接收数据,而 @ResponseBody 是用于向客户端返回数据。
处理的数据流:@RequestBody 处理的是请求流(即客户端发送到服务器的数据),而 @ResponseBody 处理的是响应流(即服务器发送到客户端的数据)。
关注点:@RequestBody 关注的是如何将请求体中的数据转换为 Java 对象,以便服务器端代码能够处理;而 @ResponseBody 关注的是如何将 Java 对象转换为适当的格式,以便作为响应体返回给客户端。