xxxxxxxxxx
@EnableSwagger2
@SpringBootApplication(scanBasePackages = { "com.app" })
public class Application {
public static void main(String[] args) {
System.out.println("Setting the timezone"+TimeZone.getTimeZone("GMT+9:00").getID());
TimeZone.setDefault(TimeZone.getTimeZone("GMT+9:00"));
SpringApplication.run(Application.class, args);
}
}