Mysql – Spring Boot – Timestamp's datetime string is shown in local timezone instead of UTC on select
My entity has a java.sql.Timestamp field: @Column(name = "expires_at") private Timestamp expiresAt; The table also has a default column updated_at, which is dynamically set on insertions/updates (i.e it is not set through JPA): updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,…