i have a controller with 2 paths as below, @PostMapping(path = {"/user/vehicle", "/user/car"}) public UserVehicle getUserVehicle(
But i want only "/user/vehicle" to be included in open api doc (and hide the "/user/car") in open api specs/doc. Is there a way to do it?
(i am generating open api specs from code.)