How do I do the following with the <aop: > namespace or annotations?
For example, what do I need to modify if my object has this on a method:Code:<property name="exposeProxy"> <value>true</value> </property>
if I want to call blah from an other method in the same bean usingCode:@Transactional(readOnly = false, propagation = Propagation.REQUIRES_NEW) public void blah() ...
Any input is appreciated.Code:((MyInterface) AopContext.currentProxy()).blah();


Reply With Quote
