1 回答
TA贡献1943条经验 获得超7个赞
所以看起来修复是为JDBC连接设置UTC时区(而不是JVM):
spring.jpa.properties.hibernate.jdbc.time_zone=UTC
它依赖于 use 将值保留在 Java 端,并在 MySQL 和 H2 中具有 DATETIME 类型的字段。Instantcreated_at
缩短的结果 kotlin 代码为:
@Entity
data class SomeEntity(
val createdAt: Instant = Instant.now() // default created date is current UTC time
)
val dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd H:mm:ss")
createdAt = LocalDateTime.parse("2012-11-30 16:13:21", dateTimeFormatter).toInstant(ZoneOffset.UTC)
想法取自“Joop Eggen”的评论,这个和这篇文章。
奖金
我想如果你正在阅读这篇文章,你可能还需要调试SQL查询的帮助。
1. 要打印在 H2 上运行的 SQL 查询,请添加和连接字符串(请参阅此处):TRACE_LEVEL_FILE=2TRACE_LEVEL_SYSTEM_OUT=2
spring.datasource.url=jdbc:h2:mem:dbname;TRACE_LEVEL_FILE=2;TRACE_LEVEL_SYSTEM_OUT=2;
2. 要启用休眠日志:
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.jpa.properties.hibernate.format_sql=true
logging.level.org.hibernate.type=TRACE
3. 要在 MySQL 中启用查询日志(其中一种方法,请勿在生产数据库上使用!
SET GLOBAL general_log = 'ON';
SET global log_output = 'table';
select * from mysql.general_log ORDER BY event_time DESC;
添加回答
举报