There is a standard way to interpret and modify all of your REST service requests in Spring Boot in a centralized way.
You don't have to duplicate logic in each of your REST service.
Here is a short post on how to implement it:
There is a standard way to interpret and modify all of your REST service requests in Spring Boot in a centralized way.
You don't have to duplicate logic in each of your REST service.
Here is a short post on how to implement it:
For further actions, you may consider blocking this person and/or reporting abuse
Martins Gouveia -
MAYUR KUMBHAR -
David -
Everton Freire -
Once suspended, vijaysrj will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, vijaysrj will be able to comment and publish posts again.
Once unpublished, all posts by vijaysrj will become hidden and only accessible to themselves.
If vijaysrj is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Vijay SRJ.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag vijaysrj:
Unflagging vijaysrj will restore default visibility to their posts.
Top comments (2)
Hey Vijay, great post on @RestControllerAdvice!🙌 By using a centralized Advice for different REST endpoints, this actually looks like aspect oriented programming (AOP)!
thanks a lot Philipp :) . yeah this is an AOP feature which Spring provides for creating REST services.