Springboot连接数据库

本文档描述了在使用Springboot连接MySQL数据库时遇到的时区错误,详细解释了错误产生的原因——8.0.20版本的mysql-connector-java导致的问题,并提供了配置`serverTimezone=UTC`作为解决方案。此外,还提及了Springboot与Mybatis的整合,推荐使用mybatis-spring-boot-starter进行集成。
摘要由CSDN通过智能技术生成

Springboot连接数据库

# 数据库配置
spring:
  datasource:
    username: root
    password: root
    url: jdbc:mysql://localhost:3306/mydb?useUnicode=true&characterEncoding=utf-8
    driver-class-name: com.mysql.jdbc.Driver
// 单元测试进行数据库连接测试    
  @Autowired
    DataSource dataSource;
    @Test
    void contextLoads() throws SQLException {
        // 查看默认的数据源   class com.zaxxer.hikari.HikariDataSource
        System.out.println(dataSource.getClass());

        // 获取数据库连接
        Connection connection = dataSource.getConnection();
        System.out.println(connection);

        // 关闭连接
        connection.close();
    }

出现错误:java.sql.SQLException: 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.【时区报错】

原因:mysql-connector-java-8.0.20.jar:8.0.20 版本问题

解决办法:

# 数据库配置,添加:serverTimezone=UTC
spring:
  datasource:
    username: root
    password: root
    url: jdbc:mysql://localhost:3306/mydb?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
    driver-class-name: com.mysql.jdbc.Driver

Springboot和Mybatis

  1. 整合spring和mybatis—>mybatis-spring
  2. 整合springboot和mybatis—>mybatis-spring-boot-starter
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值