Skip to content

Instantly share code, notes, and snippets.

@iamitshri
Created September 11, 2018 16:26
Show Gist options
  • Save iamitshri/53e8565a4cdedf2667156914815b275d to your computer and use it in GitHub Desktop.
Save iamitshri/53e8565a4cdedf2667156914815b275d to your computer and use it in GitHub Desktop.
Setting the default timezone for spring boot app
@PostConstruct
void started() {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment