Skip to content
Advertisement

spring.jpa.properties.hibernate.jdbc.time_zone applied on writes but not on reads?

I’m using:

  • spring boot 2.0.4.RELEASE
  • spring-data-jpa 2.0.9.RELEASE
  • hibernate-core 5.2.17.Final
  • hibernate-jpa-2.1-api 1.0.0.Final
  • postgres jdbc driver 42.2.9

I have the following entity:

JavaScript

and the following property set in application.yaml:

JavaScript

Regardless of what the JVM timezone/default timezone is, I want to save and return timestamps in UTC.

For testing purposes, I have set the timezone of my application code to US/Hawaii:

JavaScript

When I save an entity, it is correctly written to the database with a UTC timestamp:

JavaScript

However, when I read it back again, it’s coming back as the default timezone I’ve set in my application code: US/Hawaii, not UTC:

JavaScript

I have tried adding serverTimezone=UTC&useLegacyDatetimeCode=false to my JDBC URL but it made no difference.

Maybe related: https://hibernate.atlassian.net/browse/HHH-13417

Any help is much appreciated.

Update

Based on @midhun mathew’s answer, I found it was enough to take control of setting the dates in application code to resolve this (removing the time_zone property from application.yaml as well):

JavaScript
JavaScript

Now, when writing to the DB, the dates are ‘bound’ and inserted as UTC (compared with the original post in which the dates were ‘bound’ as USHawaii, but inserted as UTC):

JavaScript

And when reading the entity from the db, the dates are no longer read as US/Hawaii, but UTC:

JavaScript

Advertisement

Answer

I had faced the same issue. My database timezone was in UTC and my application timezone was in singapore. I solved this problem by having both the Entity and the table to have date in UTC so that there will need to be no conversion between them. Then I did the conversions between timestamps in code in the getters and setters.

So your MyEntity class will store the createdAt and lastModifiedAt in UTC.

In the setter you can have something like

JavaScript

In the getter you can have something like

JavaScript

You might also have to remove the time zone property and the @CreatedDate and @LastModifiedDate annotations as this was converting the time.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement