Hi I have a date object in my controller request mapping. The object is of ZoneDateTime. The problem is on parsing the data to ZoneDateTime it is converting it to UTC by default. I need to retain the timezone information. Is there a way to handle that.
ex: 2018-06-10T12:00:00+0500
value in my controller:
2018-06-10T07:00:00[UTC]
I am planning to use an object mapper to fix it while marshaling of data in controller. But i am not sure if i am heading to right direction.
Thanks.