POSTMAN is returning date fields with changed values
问题 I am consuming a REST service and I am receiving a JSON with date attributes that do not match what is in my database. I have two fields called "initialDate" and "finalDate". In the database they are like this: 07/MAR/19 00:00:00 07/SEP/19 23:59:59 The database timezone: select dbtimezone from dual; +00:00 In my object, inside the Java class, the content of the attributes comes as: public class Klass { @NotNull private Date initialDate; //initialDate.toString() "Thu Mar 07 00:00:00 CLT 2019"