Using set up as
I followed spring boot &
Try this(it worked for me). Write below code snippet in your spring boot main application file.
@PostConstruct public void started() { TimeZone.setDefault(TimeZone.getTimeZone("UTC")); }
Source