POSTMAN is returning date fields with changed values(POSTMAN 正在返回值更改的日期字段)
问题描述
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"
@NotNull
private Date finalDate; // finalDate.toString() "Sat Sep 07 23:59:59:9 CLT 2019"
public Date initialDate() {
return this.initialDate == null ? null : new Date(initialDate.getTime());
}
public void setInitialDate() {
this.initialDate = initialDate == null ? null : new Date(initialDate.getTime());
}
public Date finalDate() {
return this.finalDate == null ? null : new Date(finalDate.getTime());
}
public void setFinalDate() {
this.finalDate = finalDate == null ? null : new Date(finalDate.getTime());
}
}
However, in my POSTMAN, it returns this:
initialDate: "2019-03-07T03:00:00Z",
finalDate: "2019-09-08T02:59:59Z"
Why is POSTMAN adding these 3 hours to my service response? I already try to change the timezone of Windows, but there's no difference.
After some research, I've found this article that send me to a solution.
Date format Mapping to JSON Jackson
According by the write-up, In my custom class, I set the following attributes:
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSSZ");
df.setTimeZone(TimeZone.getDefault());
this.setDateFormat(df)
In this ways, I get the result as I'd like:
{
"initialDate" : "2019-03-07T00:00:00.000-0300",
"finalDate" : "2019-09-07T23:59:59.000-0300"
}
这篇关于POSTMAN 正在返回值更改的日期字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:POSTMAN 正在返回值更改的日期字段


基础教程推荐
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01