Interface AutoRegisterInterceptor
-
- All Implemented Interfaces:
-
org.springframework.core.Ordered,org.springframework.web.servlet.HandlerInterceptor
public interface AutoRegisterInterceptor implements HandlerInterceptor, OrderedThe marker interface, the bean that implements it, will be auto registered with the mvc environment by its order.
- Since:
2021-04-09
trydofor
-
-
Method Summary
Modifier and Type Method Description List<String>getExcludePatterns()List<String>getIncludePatterns()-
Methods inherited from class org.springframework.web.servlet.HandlerInterceptor
afterCompletion, postHandle, preHandle -
Methods inherited from class org.springframework.core.Ordered
getOrder -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getExcludePatterns
@NotNull() List<String> getExcludePatterns()
-
getIncludePatterns
@NotNull() List<String> getIncludePatterns()
-
-
-
-