springboot中只能用requestMapping不能用getMapping和postMapping
时间: 2024-05-17 07:15:48 浏览: 129
SpringBoot使用,实现Servelt和html交互,实现表单查询(查询表中所有数据并输出)
这是不正确的。在Spring Boot中,除了使用@RequestMapping之外,还可以使用@GetMapping和@PostMapping注释来处理HTTP GET和POST请求。事实上,这些注释实际上是@RequestMapping注释的简写形式。@GetMapping等同于@RequestMapping(method = RequestMethod.GET),而@PostMapping等同于@RequestMapping(method = RequestMethod.POST)。因此,您可以根据需要选择使用其中的任何一个注释。
阅读全文