【报错】springboot3启动报错

报错内容:Cannot load driver class: org.h2.Driver

Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.

解决;

通过源码分析,druid-spring-boot-3-starter目前最新版本是1.2.18,虽然适配了SpringBoot3,但缺少自动装配的配置文件,需要手动在resources目录下创建META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports,文件内容如下!

com.alibaba.druid.spring.boot3.autoconfigure.DruidDataSourceAutoConfigure

【报错】springboot3启动报错_第1张图片

你可能感兴趣的:(java,前端,数据库)