There is already 'projectApproveController' bean method java.lang.IllegalStateException: Ambiguous

写好接口后启动突然报错:org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘documentationPluginsBootstrapper’ defined in URL
…省略一部分walawala打印信息
Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map ‘xxxController’ method

查看打印信息,提示为暧昧含糊的映射,也就是说处理器映射器在处理这个请求的时候无法确定要调用哪个controller的接口,由此确定了是接口的mapping中映射路径出问题了。
查看一下报异常的类,看到刚写的类里自己起的updateApply这个映射名恍然大悟,之前在另一个类里自己同样写了相同映射名的接口,导致了有两个接口的映射路径名重复了,所以映射器不知道调用哪个方法了

问题原因如图(举个例子,你的重复映射路径不一定在同一个类中,图中写在同一个类中是为了方便举例)
There is already 'projectApproveController' bean method java.lang.IllegalStateException: Ambiguous_第1张图片
问题原因主要是项目中的mapping中的映射路径有重复值,spring在配置过程中对重复的映射路径会报此异常

你可能感兴趣的:(spring,boot,java,spring,spring,boot)