Caused by: java. Lang.ILLegalStateException:Ambiguous mapping. Cannot map'scheduleControlLer' method报错及解决

 这个异常表明在 Spring MVC 中存在一个映射冲突,具体来说,是因为在 ScheduleController 类中有两个方法,分别是 save 和 update,它们被映射到相同的路径 {POST [/schedule]}。这导致了一个模糊的映射,Spring 无法确定到底应该使用哪个方法来处理请求。

 

查看controller代码

 

发现save和update都是PostMapping, 修改的update方法应该为PutMapping

改正后问题解决

posted @ 2023-12-27 23:04  Men!  阅读(319)  评论(0编辑  收藏  举报