欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java Ambiguous mapping. Cannot map ‘xxx‘ method问题解决

程序员文章站 2022-03-08 16:24:10
...

问题描述:

Caused by: java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'UserController' method

问题分析:

1、Controller的@RequestMapping注解的path属性重复。

@RequestMapping("/test")

@RequestMapping("/test")

2、方法的@RequestMapping、@GetMapping、@PostMapping、@PutMapping、@DeleteMapping注解的path属性重复。

@GetMapping("/test")

@PostMapping("/test")
相关标签: Java