There is already ‘requestController‘ bean method

错误含义:到{GET [/ success]}:已经有’requestController’bean方法
com.zt.boot_web_01.controller.RequestController#success(String,Integer,HttpServletRequest)映射。
原因是:在同一个项目中定义了相同的两个@GetMapping("/success")果不其然,在检查Controller的时候查出了两个同名的
There is already ‘requestController‘ bean method_第1张图片
There is already ‘requestController‘ bean method_第2张图片
这就会产生冲突,当浏览器发来请求时,因为有两个重名的,导致服务器不知道用哪个去处理则会发生冲突。就会报错。将另一个改了就可以了。

你可能感兴趣的:(#,SpringBoot)