spring beancopier Cannot invoke “Object.getClass()“ because “cause“ is null异常处理

news/2024/11/7 20:37:18/

我们项目用到spring beancopier, 在别的机器上运行正常,代码拉到我机器上就不正常了,抛出异常信息如题。

Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.ibm.riskmeasure.rwaservice.service.singletest.impl.SingleTestServiceImpl]: Constructor threw exception; nested exception is java.lang.NullPointerException: Cannot invoke "Object.getClass()" because "cause" is nullat org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:217) ~[spring-beans-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:87) ~[spring-beans-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1315) ~[spring-beans-5.2.15.RELEASE.jar:5.2.15.RELEASE]... 51 common frames omitted
Caused by: java.lang.NullPointerException: Cannot invoke "Object.getClass()" because "cause" is nullat org.springframework.cglib.core.CodeGenerationException.<init>(CodeGenerationException.java:25) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.ReflectUtils.defineClass(ReflectUtils.java:567) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.AbstractClassGenerator.generate(AbstractClassGenerator.java:363) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.AbstractClassGenerator$ClassLoaderData$3.apply(AbstractClassGenerator.java:110) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.AbstractClassGenerator$ClassLoaderData$3.apply(AbstractClassGenerator.java:108) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.internal.LoadingCache$2.call(LoadingCache.java:54) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) ~[na:na]at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) ~[na:na]at org.springframework.cglib.core.internal.LoadingCache.createEntry(LoadingCache.java:61) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.internal.LoadingCache.get(LoadingCache.java:34) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.AbstractClassGenerator$ClassLoaderData.get(AbstractClassGenerator.java:134) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:319) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.beans.BeanCopier$Generator.create(BeanCopier.java:95) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at org.springframework.cglib.beans.BeanCopier.create(BeanCopier.java:51) ~[spring-core-5.2.15.RELEASE.jar:5.2.15.RELEASE]at com.ibm.riskmeasure.rwaservice.service.singletest.impl.SingleTestServiceImpl.<init>(SingleTestServiceImpl.java:69) ~[classes/:na]at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:na]at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[na:na]at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:na]at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[na:na]at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[na:na]at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:204) ~[spring-beans-5.2.15.RELEASE.jar:5.2.15.RELEASE]... 53 common frames omitted

经研究发现,这个根源是java版本太新造成的,把我的环境换成java8就好了。当然,也可以升级spring-core到5.3x以上版本。

将Eclipse的jre库降级到JDK8

 

Eclipse中导入JDK类库的源代码以及添加指定的API

一、在Eclipse中导入JDK类库的源代码

操作步骤:
打开eclipse->“window”-> “Preferences” -> “Java” -> “Installed JRES”->选择你的JRE->”Edit”->”展开……xx\lib\rt.jar”->双击”Source Attachment:(none)”->”External location”->External File->选择你的JDK安装目录下的src.zip->ok、finish、apply and close->完成

使用:在 Java 编辑器中,选择类型、方法或字段的名称,按 F3 键转到定义(变量)或者查看源代码(类和方法)

注:
rt.jar包含了jdk的基础类库,也就是你在java doc里面看到的所有的类的class文件

或者,直接在相应的类或者方法上按F3,显示点击attach source,这里添加指定的压缩包路径即可

二、在Eclipse中添加指定的API

操作步骤:
打开eclipse->“window”-> “Preferences” -> “Java” -> “Installed JRES”->选择你的JRE->”Edit”->”展开……xx\lib\rt.jar”->双击”Javadoc location:”->”Javadoc URL-Javadoc location path:”->选择你的api位置->ok、finish、apply and close->完成

使用:在 Java 编辑器中,选择类型、方法的名称,按 Shift+F2 键查看api

注:
rt.jar包含了jdk的基础类库,也就是你在java doc里面看到的所有的类的class文件

转载于:https://www.cnblogs.com/ruber/p/10671079.html


http://www.ppmy.cn/news/40604.html

相关文章

[蓝桥杯]迷宫(路径的存储和打印是关键,orz)

//存储容器&#xff1a;1&#xff1a;node father[maxn][maxn];//当前节点的父节点 2&#xff1a;struct node//*** { int x,y,d; char pos;//存储D L R U }; 具体存储&#xff1a; for(int i0;i<4;i){int toxnow.xdix[i];int toynow.ydiy[i];father[tox][toy].x…

TCP连接耗尽攻击异常报文攻击与防御

TCP连接耗尽攻击与防御 TCP是面向连接的协议&#xff0c;其通信双方必须保持连接状态&#xff0c;并且通过确认、重传、滑动窗口等机制&#xff0c;保证数据传输的可靠性和稳定性。攻击者利用 TCP 的上述特点&#xff0c;利用TCP连接消耗被攻击目标的系统资源。 连接耗尽攻击…

谈ChatGPT基本信息

ChatGPT是由人工智能研究实验室OpenAI在2022年11月30日发布的全新聊天机器人模型。 ChatGPT是人工智能技术驱动的自然语言处理工具&#xff0c;它能够通过学习和理解人类的语言来进行对话&#xff0c;还能根据聊天的上下文进行互动&#xff0c;真正像人类一样来聊天交流&#…

【eMMC学习记录】emmc相关名词解释和基础概念

名词解释 NAND Flash:半导体闪存 HDD&#xff1a;机械硬盘 FW:固件 Peak Power:峰值功率 Active Power:读写功耗 Idle Power:空闲功耗 standby/sleep Power Dev Sleep Power:SSD内部休眠功耗 RAM:掉电丢失数据 FGT:浮栅晶体管 FormFactor:尺寸标准件 AFA:全闪存整列…

可视化CNN和特征图

卷积神经网络(cnn)是一种神经网络&#xff0c;通常用于图像分类、目标检测和其他计算机视觉任务。CNN的关键组件之一是特征图&#xff0c;它是通过对图像应用卷积滤波器生成的输入图像的表示。 理解卷积层 1、卷积操作 卷积的概念是CNN操作的核心。卷积是一种数学运算&#x…

医疗耗材缺陷视觉检测的应用

近年来&#xff0c;全球医疗耗材市场规模持续增长&#xff0c;GMP标准不断提高&#xff0c;用工成本不断上升。 在药品生产和包装环节&#xff0c;传统的人造灯检测方式已经不能满足生产自动化和质量控制的要求。 随着AI、医疗耗材缺陷视觉检测等新技术的发展和应用&#xff0c…

(十一)centos7案例实战——通过系统监控日志定制实现系统安全监控

前言 在实际的生产服务器环境中&#xff0c;我们常常会碰到服务器系统的安全问题&#xff0c;如何监控我们的服务器系统安全也是需要我们考虑的问题&#xff0c;由于网络攻击、恶意操作系统等等情况&#xff0c;我们需要查看这些历史操作&#xff0c;这就需要我们可以通过系统…

STM-32:USART串口协议、串口外设—数据发送/数据发送+接收

目录一、串口通信1.1通信接口1.2串口通信1.2.1简介1.2.2硬件电路1.2.3串口参数及时序二、STM32的USART外设2.1USART简介2.2USART框图三、数据传输3.1数据帧3.2输入数据策略3.2.1起始位侦测3.2.2数据采样3.3波特率发生器3.4数据模式四、实际用例4.1串口发送4.1.1接线图4.1.2程序…