InterviewSolution
Saved Bookmarks
| 1. |
What are the important annotations use to create the interceptor and what all their annotation does? |
|
Answer» INTERCEPTOR is one of the prominent features of spring boot and must use the @COMPONENT annotated class that supports it and it should implement the HandlerInterceptor interface. There are three methods which are USED to implement the interceptor.
|
|