What do you think about putting business logic into a Spring interceptor/Advice? Is it a bad practice?
Which kind of business logic would you put in an interceptor? just validations?
What I see is that business logic in an interceptor is harder to see because there is not a clear chain of method calls to follow. And also business logic should is supposed to be at Domain Objects if you use domain driven design.
Thanks in advance.