I have a class with some field
public class SomeClass {
private Duration discussionTime;
}
When i try to send this class to frontend using @RestController
in Spring, i see that answer:
"discussionTime": {
"seconds": 7,
"zero": false,
"negative": false,
"nano": 72000000,
"units": [
"SECONDS",
"NANOS"
]
}
Is there ways to set format of answer to
"discussionTime": 7
?