Ambiguous handler methods mapped for'xxx'报错的解决办法
2022/8/15 23:28:00
本文主要是介绍Ambiguous handler methods mapped for'xxx'报错的解决办法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
这个报错的原因是我们的Controller中,有两个模棱两可的处理方法,这两个方法有歧义,无法分清谁是谁.因为Spring无法根据传参的类型自动匹配到可以处理的方法。比如下面这里,
@GetMapping("/{id}")和
@GetMapping("/{addr}")是冲突的,必须修改一下其中的一个url区分开来
package com.xzit.controller; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.xzit.entity.Emp; import com.xzit.service.EmpService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.util.List; @RestController @RequestMapping("emp") @Api(tags = {"员工管理控制器"}) public class EmpController { @Resource private EmpService service; @ApiOperation("按给定的id显示员工信息") @GetMapping("/{id}") public Object selectId(@PathVariable Integer id){ Emp emp=service.selectId(id); return emp; } @ApiOperation("按给定地址查询员工信息") @GetMapping("/{addr}") public Object selectAddr(@PathVariable String addr){ List<Emp> empList=service.selectAddr(addr); return empList; } }
执行的报错信息,它分不清这两个方法。
正确的修改方式,我在selecAddr()方法随便加一个/userAddr的Url前缀:
package com.xzit.controller; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.xzit.entity.Emp; import com.xzit.service.EmpService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.util.List; @RestController @RequestMapping("emp") @Api(tags = {"员工管理控制器"}) public class EmpController { @Resource private EmpService service; @ApiOperation("按给定的id显示员工信息") @GetMapping("/{id}") public Object selectId(@PathVariable Integer id){ Emp emp=service.selectId(id); return emp; } @ApiOperation("按给定地址查询员工信息") @GetMapping("/userAddr/{addr}") public Object selectAddr(@PathVariable String addr){ List<Emp> empList=service.selectAddr(addr); return empList; } }
重启服务,报错解决,可以正确查询出数据了:
参考文章:
https://blog.csdn.net/syc000666/article/details/94978731
这篇关于Ambiguous handler methods mapped for'xxx'报错的解决办法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?
- 2025-01-10实现精准执行:团队协作新方法
- 2025-01-10如何使用工具提升活动策划团队的工作效率?几个必备工具推荐
- 2025-01-10WiX 标签使用介绍:打造专业安装程序的利器