@RequestMapping@GetMapping@PostMapping区别详解——Web网络系列学习笔记

Posted 来老铁干了这碗代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@RequestMapping@GetMapping@PostMapping区别详解——Web网络系列学习笔记相关的知识,希望对你有一定的参考价值。

@RequestMapping可以指定GET、POST请求方式

@RequestMapping(value = "hello", method= RequestMethod.GET )
public class HelloController {
    // ...
}

@GetMapping等价于@RequestMapping的GET请求方式

@GetMapping("hello")
public class HelloController {
    // ...
}

@PostMapping等价于@RequestMapping的POST请求方式

@PostMapping("hello")
public class HelloController {
    // ...
}

关于Get和Post请求的区别,请移步这篇文章——>https://zhanglong.blog.csdn.net/article/details/120745909

以上是关于@RequestMapping@GetMapping@PostMapping区别详解——Web网络系列学习笔记的主要内容,如果未能解决你的问题,请参考以下文章