Last updated: November 15, 2020 8:44 PM
A collection of simple Spring Boot Error
JDBC driver
Error tips:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration'
Whole error tips:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration': Unsatisfied dependency expressed through constructor parameter 0;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Tomcat.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.tomcat.jdbc.pool.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.IllegalStateException: Cannot load driver class: com.mysql.cj.jdbc.Driver
Reason
Can not relize com.mysql.cj.jdbc.Driver
.
Fix
Change spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
to spring.datasource.driverClassName=com.mysql.jdbc.Driver
.
This work is licensed under a Creative Commons Attribution 4.0 International License.