I have SpringBoot application X that has customer facing APIs. Those APIs receive request body as JSON.
Application X issues API calls to application Y and receives responses with JSON body.
I want to prevent application X from receiving unknown fields in the request body on customer-facing controllers.
I was thinking about spring.jackson.deserialization.fail-on-unknown-properties=true
but if I understand correctly such configuration will cause a failure also if a call from application X to application Y will return response body with unknown field. Therefore this configuration will make the API between application X and application Y more coupled and less robust.
I am looking for a way to enforce "fail-on-unknown-fields" only for deserialization of request body at customer facing controllers of an application while allowing deserialization at other parts of the application to ignore unknown fields
Example: I have the following customer facing API.
@PostMapping
public Response updateProduct(@RequestBody Product product) {
.....
}
Where
class Product {
private int id;
private String name;
private int price;
}
I want to prevent customer from passing the following body to request, because colour is not a know field.
{
"id": 777,
"name": "apple",
"price": 2,
"colour": "red"
}
But - I want it the "fail-unknown-fields" to be enforced on this controller only and not at other places where Jackson is used to deserialized responses received from other applications.
To change this on project level, you can add on your application.properties the following content:
Or if you are using an application.yaml:
This configuration will affect on project level, so you can keep using the correct DTO on the @RequestBody object received. This way, you don't have to do any change on your controller, but may be advisable to control the exception in your @ControllerAdvice.