项目功能:连接MySql数据库,向数据库插入一条数据 项目结构: DEBUG信息:DEBUG [main] - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@67b92f0a: ...
项目功能:
连接MySql数据库,向数据库插入一条数据
项目结构:
DEBUG信息:
DEBUG [main] - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@67b92f0a: defining beans
[org.springframework.context.support.PropertySourcesPlaceholderConfigurer#0,studentService,studentDao,dataSource]; root of factory hierarchy
juint信息:
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'studentService' defined in class path resource [applicationContext.xml]:
Cannot resolve reference to bean 'studentDao' while setting bean property 'studentDao';
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'studentDao' defined in class path resource [applicationContext.xml]:
Cannot resolve reference to bean 'dataSource' while setting bean property 'dataSource';
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'dataSource' defined in class path resource [applicationContext.xml]:
Error setting property values; nested exception is org.springframework.beans.PropertyBatchUpdateException;
nested PropertyAccessExceptions (1) are: PropertyAccessException 1: org.springframework.beans.MethodInvocationException:
Property 'driverClassName' threw exception; nested exception is java.lang.IllegalStateException: Could not load JDBC driver class [${jdbc.driverClass]
分析:
1.配置文件出错。
(1)检测jdbc.properties————————————没有错误
(2)检测applicationContext.xml————————没有错误
2.JAR包错误
(1)重新导包————————————————解决错误,成功连接数据库,插入数据。
问题原因:
产生错误时使用的Jar包: 重新导入的Jar包:
缺少mysql-connector-java-5.1.13-bin.jar包!!
所以报的是无法找到驱动。
沃梦达教程
本文标题为:【⭐】Java—Spring-—数据库操作—使用内置连接池,报读取不到驱动错误。Could not load JDBC driver class。
基础教程推荐
猜你喜欢
- Java读取网络文件的实例代码 2023-02-28
- 如何通过Java从MS Access 2007数据库中读取Unicode字符? 2023-11-03
- java – Spring JPA项目的数据库管理站点 2023-11-03
- 使用工具类-java精确到小数点后6位 2023-06-24
- Maven导入本地jar包的实现步骤 2023-02-27
- Java知识梳理之泛型用法详解 2023-04-06
- SpringBoot超详细分析启动流程 2023-02-11
- Spring依赖注入的几种方式分享梳理总结 2023-02-27
- JSP 中Spring的Resource类读写中文Properties实例代码 2023-08-01
- SpringBoot HttpMessageConverter消息转换器的使用详解 2022-12-07