DEV Community

Discussion on: How to interpret and modify REST requests in Spring Boot ?

Collapse
 
pmgysel profile image
Philipp Gysel

Hey Vijay, great post on @RestControllerAdvice!🙌 By using a centralized Advice for different REST endpoints, this actually looks like aspect oriented programming (AOP)!

Collapse
 
vijaysrj profile image
Vijay SRJ

thanks a lot Philipp :) . yeah this is an AOP feature which Spring provides for creating REST services.