I am developing a app
which uses a api
that connects to my bd
, where I try to pass an object that has a parameter of type Time
which stores me an hour with the format hh:mm:ss 00:00:00
. So far I have no problem since I send the object to my bd
by means of a json
and stores it perfectly. The issue is when I try to bring a list of those objects by means of a GET
an example object / getAll, that's where I find the problem that returns the following error Unparseable date: "02:00:00"
. However when I do the GET
using PostMan
it brings me the list perfectly. Can someone guide me? ...