Hi. I am not used to practicing AOP, but anyway can someone tell me which one is the best practice:
I want to use this logic in some controllers of mine:
if User attribute is not set in HttpSession then forward to loginController
..so the alternatives are:
using a common superclass such as LoginRedirectingSimpleFormController/whateverTheNameIs.., or using AOP
(in which case I dont know how to implement it), but which is best: AOP or common superclass ?
Thanks


Reply With Quote
