I'm a little confused with implementing the ThrowsAdvice interface.
If I have afterThrowing with the full parameter list (including method, target, etc) in a facade class, and a DAO called from the facade throws DataAccessException, what will I get as a parameter? Will I get the facade method that called the DAO (which is what I want), or the DAO method that actually threw the exception?


Reply With Quote