how to inject interceptor in java using spring boot example
Example: spring controller method to run before every call
@ModelAttribute("foo")
public Foo foo() {
return new Foo();
}
@ModelAttribute("foo")
public Foo foo() {
return new Foo();
}