spring boot automatically formats attributes of time type as string (String), when controller outputs an object as @ ResponseBody. I don"t want to do this. I want to calculate time at the front end, so I want spring to output the properties of time type directly to a timestamp (int type), and then handle it itself at the front end.
I don"t know how to set up spring-boot.