SpringBoot整合MyBatis MySQL的时区问题

本文详细介绍了在使用SpringBoot框架整合MyBatis时遇到的时区配置错误,通过调整MySQL的全局及会话时区设置到东八区(+8:00),成功解决了Theservertimezonevalue的错误提示,确保了项目中时间数据的正确处理。
摘要由CSDN通过智能技术生成

今天使用SpringBoot整合MyBatis时报错。

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.

报错的大致意思就是无法识别或标识多个时区

原因是M有SQL的时区有问题, 需要重新设置。

解决办法:

set global time_zone = '+8:00'; #修改mysql全局时区为北京时间,即我们所在的东8区
set time_zone = '+8:00'; #修改当前会话时区
flush privileges; #立即生效

再重新启动springboot项目,就成功了。

在Spring Boot中整合MyBatisMySQL的步骤如下: 1. 首先,在你的项目中引入相关依赖。你需要在pom.xml文件中添加以下依赖项: ``` <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> ``` 这些依赖项将帮助你连接MySQL数据库和构建Web应用程序。 2. 接下来,你需要创建一个配置文件来配置MySQL连接信息。可以在application.yml(或application.properties)文件中添加以下配置: ``` spring: datasource: url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC username: root password: 642724890 driver-class-name: com.mysql.jdbc.Driver ``` 这些配置项可以让你指定MySQL的连接URL、用户名、密码和驱动类。 3. 现在,你可以开始创建你的实体类和数据库表了。你可以创建一个名为User的实体类,然后在数据库中创建相应的表。 4. 最后,你需要创建一个Mapper接口和对应的Mapper XML文件来定义数据库操作。在Mapper接口中,你可以使用MyBatis的注解或XML方式来编写SQL语句。 综上所述,这是一个简单的Spring Boot整合MyBatisMySQL的示例,无需繁琐的配置文件。你只需要添加相关依赖并配置数据库连接信息就可以开始使用MyBatisMySQL了。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [SpringBoot 学习笔记(九)SpringBoot整合MySQLMyBatis](https://blog.csdn.net/qq_44648936/article/details/123541937)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* [SpringBoot整合MyBatis MySql demo](https://download.csdn.net/download/guandongsheng110/10333625)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值