Bean初始化错误:Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError

在启动Dubbo项目前,没有报任何错误,但是在点击运行Dubbo项目后报Bean初始化错误,也就是以下内容:

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2022-09-01 14:55:02.289 ERROR 15560 --- [           main] o.s.boot.SpringApplication               : Application run failed

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ServiceBean:com.service.ProviderUserService': Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError

图片和放大图如下:

Bean初始化错误:Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError_第1张图片Bean初始化错误:Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError_第2张图片

查找过spring注解没有问题,甚至查看过maven依赖也没有问题,最后发现这是因为JDK运行版本过高的问题导致:当前的运行版本要求配置太高,解决方法如下:

 1、找到Project Structure设置选项Bean初始化错误:Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError_第3张图片

2、key可以看到如下界面,我这里是使用了jdk17版本,要求Dubbo项目里面的配置也是17版本,但是我的实际使用的都需要是jdk1.8版本,所以改为相应版本即可Bean初始化错误:Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError_第4张图片

 3、改为jdk1.8版本

Bean初始化错误:Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError_第5张图片

 4、再次运行项目,已经正常运行

Bean初始化错误:Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError_第6张图片

 

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