Thanks for @Koboo's response. My code worked with his solution. But I found other simpler solution. You need just change java time zone inside bootstrap class's main method:
@SpringBootApplication
public class ApiApplication {
public static void main(String[] args) {
TimeZone.setDefault(TimeZone.getTimeZone(ZoneOffset.UTC));
SpringApplication.run(ReflectBusinessApiApplication.class, args);
}
}