Hi,
sorry if this question has been asked before:
I try to implement method based security with global-method-security:
...
<global-method-security>
<protect-pointcut expression="execution(* com.mycompany.*Service.*(..))" access="ROLE_USER"/>
</global-method-security>
...
The services are also tranactional via XML-defined AOP advisors.
Last but not least there are some custom advices defined for some service methods.
Now I want to order these advices such that first the transaction starts, then the security checks are performed and after that my custom advices.
What's the best/recommended way to achieve this?
(While I can specify ordering info on the transaction and custom advices, I don't see an order-attribute on global-method-security or protect-pointcut)
Thanks for your help,
Holger



