我是靠谱客的博主 整齐大船,最近开发中收集的这篇文章主要介绍conflicts with existing, non-compatible bean definition of same name and claSpringMVC conflicts with existing, non-compatible bean definition of same name and class 的解决办法,springmvc获取bean,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

SpringMVC conflicts with existing, non-compatible bean definition of same name and class 的解决办法,springmvc获取bean

SpringMVC的Controller 应该是采用类似键值对(key/value)的映射方式处理的。而当中的键,默认是用cotroller的类名(非全类名)作为键。这样,如果不同包下面的两个Contoller 重名的话,就会导致SpringMVC的容器管理中的controller map中的key重复了。

解决这个问题也比较简单。

在@Controller 中,使用重名名类名就可以了或者 @Controller("testcontroller")这样命名

因为如果在使用注解 @Controller 时候,如果不使用命名,而SpringMVC会默认把类名的头一个字母小写,然后放到一个map中。

 尽管上面两个类全类名不同,但是他们使用了@Controller 注解的时候,都没有使用命名。在SpringMVC在扫描Controller的时候, , 放到一个全局的map中。

这样,就会出现两个键完全一样的Controller。由于SpringMVC不使用覆盖的方式处理具有相同键的不同全类名的Controller,、扫描的时候就会包上面的错误。

 

最后

以上就是整齐大船为你收集整理的conflicts with existing, non-compatible bean definition of same name and claSpringMVC conflicts with existing, non-compatible bean definition of same name and class 的解决办法,springmvc获取bean的全部内容,希望文章能够帮你解决conflicts with existing, non-compatible bean definition of same name and claSpringMVC conflicts with existing, non-compatible bean definition of same name and class 的解决办法,springmvc获取bean所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(30)

评论列表共有 0 条评论

立即
投稿
返回
顶部