I’m using SpringBoot as the backend to return MongoDB data upon receiving a request. However, when I use Postman to send a request, I find that the objectID has been automatically converted to the format {timestamp, date}, just like in my frontend application.

I made test by print out the value that controller returns
@GetMapping("/public/home")
public ResponseEntity<List<Movie>> FindAllMovies() {
for(var movie : movieService.findAllMovies()) {
System.out.println(movie);
}
return new ResponseEntity<>(movieService.findAllMovies(), HttpStatus.OK);
}
It prints the raw objectID without conversion.
Movie(id=650341e34828196510d34049, title=White Noise, year=2022, cast=[Adam Driver, Greta Gerwig, Don Cheadle, Raffey Cassidy, Sam Nivola, May Nivola, Jodie
I’m pretty confused when Objectid is being converted. Any advice of solving the problem?