项目重启后突然报这个异常
看日志应该是在初始化字典,源代码
private Map<String, String> dictMap; @PostConstruct publicvoid init() { List<SysDictData> eventType = DictUtils.getDictCache("xxx"); dictMap = eventType.stream().collect(Collectors.toMap(SysDictData::getDictValue, SysDictData::getDictLabel)); }
这里的操作是把词典list转换成map,然后key冲突。
但我比对了一下数据,没有找到重复的dictValue,报这个错有点莫名其妙。
最后的解决办法参考了其他网友,得以顺利解决,最后上修改后的代码
private Map<String, String> dictMap;@PostConstructpublic void init() { if (dictMap == null || dictMap.isEmpty()) { List<SysDictData> eventType = DictUtils.getDictCache("xxx"); dictMap = eventType.stream().collect(Collectors.toMap(SysDictData::getDictValue, SysDictData::getDictLabel, (entity1, entity2) -> entity1)); }}
Collectors.toMap
增加了第三个参数(entity1, entity2) -> entity1)
,这个参数的意思是如果entity1、entity2的key值相同,选择entity1作为那个key所对应的value值。
参考:https://blog.csdn.net/weixin_40873693/article/details/124659750
来源地址:https://blog.csdn.net/tiantang_1986/article/details/130077144