我是靠谱客的博主 年轻巨人,最近开发中收集的这篇文章主要介绍The following method did not exist: org.springframework.util.CollectionUtils.newHashMap(I)Lja.......,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一开始报错
java: 程序包org.springframework.jdbc.datasource.lookup不存在
是因为jar包没有加载完全。或者jar包不存在,需要重新导包

接下来报错:
The following method did not exist: org.springframework.util.CollectionUtils.newHashMap(I)Lja......
查看可以看出org.springframework.jdbc:5.2.4的两个依赖包spring-core与spring-beans的版本都是5.1.6,由于版本的冲突,有可能在执行的时候,会出现某些方法不存在的情况。

解决方法:
1、在当前项目中导入依赖,将org.springframework.spring.jdbc的jar包版本降到5.1.6

<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-jdbc</artifactId>
			<version>5.1.6.RELEASE</version>

2、在File-Project Structure的Modules中,在当前项目中引入org.springframework.spring.jdbc:5.1.6版本

最后

以上就是年轻巨人为你收集整理的The following method did not exist: org.springframework.util.CollectionUtils.newHashMap(I)Lja.......的全部内容,希望文章能够帮你解决The following method did not exist: org.springframework.util.CollectionUtils.newHashMap(I)Lja.......所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部