为了账号安全,请及时绑定邮箱和手机立即绑定

spring boot为什么引入两个mapping会报错

@GetMapping(name = "/hello")
public String hello() {
return "hello";
}

@GetMapping(name = "/hello2")
public String hello2() {
return "hello";
}

当再写@GetMapping(name = "/hello2")的方法时报错。
Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'helloWord' method 
public java.lang.String com.java.HelloWord.hello2()
to {[],methods=[GET]}: There is already 'helloWord' bean method
public java.lang.String com.java.HelloWord.hello() mapped.

除此之外,只写一个mapping @GetMapping(name = "/hello") 
http://localhost:8080/hello可以访问到该方法
http://localhost:8080/xxxx也可以访问到该方法

正在回答

1 回答

Spring boot是java后台代码的自动配置

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151599    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

spring boot为什么引入两个mapping会报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信