spring boot项目启动报DataSource错误

本文详细解析了SpringBoot项目中数据库配置的常见错误及解决方案,包括配置文件的正确书写方式、pom文件的必要配置以及解决数据库驱动问题的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

初建一个简单的spring boot 项目,启动后会报错。 

Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver class
2019-01-27 14:36:35.101  INFO 5484 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Shutting down ExecutorService 'applicationTaskExecutor'
2019-01-27 14:36:35.104  INFO 5484 --- [           main] o.apache.catalina.core.StandardService   : Stopping service [Tomcat]
2019-01-27 14:36:35.116  INFO 5484 --- [           main] ConditionEvaluationReportLoggingListener : 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2019-01-27 14:36:35.123 ERROR 5484 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class


Action:

Consider the following:
	If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
	If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).


Process finished with exit code 1

报错信息说明的很详细:就是在项目启动的时候在 resource目录下没有加载到配置信息;如果项目只是想简单的启动运行,不进行数据库操作可以在 启动类上做如下处理便可解决。

 

  • @SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})
  • 如果对数据库操作有要求的话在application文件中加入配置
  • spring:
      datasource:
        url: jdbc:mysql://localhost:3306/数据库名称?useUnicode=true&characterEncoding=UTF-8&useSSL=false
        username: 数据库用户名
        password: 数据库密码
        # 如果在pom 文件中没有依赖数据库连接这个会报红,加入 ‘mysql-connector-java’ 即可,如果还是报红的话,给出 <version>8.0.13</version> 具体版本号即可,如果还是不行,可能是其他引入的spring相关 jar 包的 pom 坐标依赖有冲突,删除即可。但是在启动后后台打印日志会报红
    #《Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is #`com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual #loading of the driver class is generally unnecessary.》
    # 把驱动名称:com.mysql.jdbc.Driver 换成 com.mysql.cj.jdbc.Driver 即可
        driver-class-name: com.mysql.jdbc.Driver
    
    
    spring:
      datasource:
        url: jdbc:mysql://localhost:3306/数据库名称?useUnicode=true&characterEncoding=UTF-8&useSSL=false
        username: 数据库用户名
        password: 数据库密码
        driver-class-name: com.mysql.cj.jdbc.Driver
  • 数月之后重新用STS工具搭建项目后发现:

无故报错,并且启动后就刚才的问题做出配置后依然得不到解决。 但是用idea同样的版本却没有问题。我也不知道为啥

 这是pom文件对比

  • 在spring xml配置文件中引用了数据库地址 所以需要对:等进行转义处理.但是在application.properties/或者application.yml文件并不需要转义,错误和正确方法写在下面了.
//错误示例
spring.datasource.url = jdbc:mysql\://192.168.0.20\:1504/f_me?setUnicode=true&characterEncoding=utf8
//正确示例
spring.datasource.url = jdbc:mysql://192.168.0.20:1504/f_me?setUnicode=true&characterEncoding=utf8
  • yml或者properties文件没有被扫描到,需要在pom文件中<build></build>添加如下.来保证文件都能正常被扫描到并且加载成功.
<!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
<resources>
    <resource>
        <directory>src/main/java</directory>
        <includes>
            <include>**/*.yml</include>
            <include>**/*.properties</include>
            <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
    </resource>
    <resource>
        <directory>src/main/resources</directory>
        <includes>
            <include>**/*.yml</include>
            <include>**/*.properties</include>
            <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
    </resource>
</resources>

如果是:

com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

加上 &serverTimezone=UTC 即可 。如:

com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

# 解决方案
druid.jdbcUrl=jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC


链接:https://www.jianshu.com/p/836d455663da
 

### 配置和使用 HikariDataSource HikariDataSourceSpring Boot 默认的数据源,因其性能优异而广泛使用。在 Spring Boot 中配置 HikariDataSource 主要通过 `application.yml` 或 `application.properties` 文件进行设置,并且可以结合数据库驱动依赖自动完成数据源的初始化。 #### 1. 添加依赖 当项目中引入了 `spring-boot-starter-jdbc` 依赖时,会自动级联加入 HikariCP 的依赖,因此无需额外添加 Hikari 的 Maven 或 Gradle 依赖[^2]。 ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> ``` 同时,需要根据使用的数据库类型引入对应的 JDBC 驱动,例如 MySQL、PostgreSQL 等: ```xml <!-- MySQL 示例 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!-- PostgreSQL 示例 --> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> ``` #### 2. 配置 HikariDataSource Spring Boot 支持通过 `application.yml` 或 `application.properties` 文件对 Hikari 进行详细配置。以下是一个典型的 `application.yml` 配置示例: ```yaml spring: datasource: url: jdbc:mysql://localhost:3306/mydb?useSSL=false username: root password: root driver-class-name: com.mysql.cj.jdbc.Driver hikari: auto-commit: true connection-test-query: SELECT 1 connection-timeout: 30000 idle-timeout: 30000 max-lifetime: 1800000 maximum-pool-size: 15 minimum-idle: 5 pool-name: MyHikariPool validation-timeout: 10 ``` 如果使用 `application.properties`,则配置如下: ```properties spring.datasource.url=jdbc:mysql://localhost:3306/mydb?useSSL=false spring.datasource.username=root spring.datasource.password=root spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.hikari.auto-commit=true spring.datasource.hikari.connection-test-query=SELECT 1 spring.datasource.hikari.connection-timeout=30000 spring.datasource.hikari.idle-timeout=30000 spring.datasource.hikari.max-lifetime=1800000 spring.datasource.hikari.maximum-pool-size=15 spring.datasource.hikari.minimum-idle=5 spring.datasource.hikari.pool-name=MyHikariPool spring.datasource.hikari.validation-timeout=10 ``` 上述配置项解释如下: - **url**: 数据库连接地址。 - **username/password**: 数据库登录凭据。 - **driver-class-name**: 数据库驱动类名。 - **auto-commit**: 是否自动提交事务,默认为 `true`。 - **connection-test-query**: 测试连接是否有效的 SQL 查询语句。 - **connection-timeout**: 获取连接的超时时间(毫秒)。 - **idle-timeout**: 连接在池中保持空闲的最长时间(毫秒)。 - **max-lifetime**: 连接的最大生命周期(毫秒)。 - **maximum-pool-size**: 连接池允许的最大连接数。 - **minimum-idle**: 连接池中保持的最小空闲连接数。 - **pool-name**: 连接池名称。 - **validation-timeout**: 连接验证的超时时间(秒)[^5]。 #### 3. 自定义 HikariConfig 除了通过配置文件方式外,还可以手动创建 `HikariConfig` 和 `HikariDataSource` 实例。这适用于更复杂的场景或动态加载配置文件的情况: ```java import com.zaxxer.hikari.HikariConfig; import com.zaxxer.hikari.HikariDataSource; import javax.sql.DataSource; public class DataSourceFactory { public static DataSource createDataSource() { HikariConfig config = new HikariConfig("/some/path/hikari.properties"); return new HikariDataSource(config); } } ``` 对应的 `hikari.properties` 文件内容如下: ```properties dataSourceClassName=org.postgresql.ds.PGSimpleDataSource dataSource.user=test dataSource.password=test dataSource.databaseName=mydb dataSource.portNumber=5432 dataSource.serverName=localhost ``` #### 4. 切换其他数据源(如 Druid) 如果希望使用其他数据源实现(如 Alibaba Druid),可以通过 `spring.datasource.type` 属性指定: ```yaml spring: datasource: type: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure ``` 并在 `pom.xml` 中添加 Druid 的依赖[^4]。 #### 5. 使用 HikariDataSource 进行数据库操作 一旦数据源配置完成,Spring Boot 会自动注入 `DataSource` Bean,可以直接在代码中使用: ```java import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Service; @Service public class UserService { private final JdbcTemplate jdbcTemplate; @Autowired public UserService(JdbcTemplate jdbcTemplate) { this.jdbcTemplate = jdbcTemplate; } public void createUser(String name, String email) { String sql = "INSERT INTO users(name, email) VALUES(?, ?)"; jdbcTemplate.update(sql, name, email); } } ``` ####
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值