5
我的方面如下:才能擺脫bean定義中使用Spring的AOP方面
@Aspect
public class SomeAspect{
//define pointcuts
// define Advices pertaining to pointcuts
}
我的方面,配置XML文件:
<?xml ...?>
<beans ...
xmlns:aop
xmlns:context ..>
<bean id="someAspect" class="...SomeAspect"/>
<aop:aspectj-autoproxy />
</beans>
這將運行完全正常
我需要什麼樣的:
我想擺脫如上所示在我的config xml文件中編寫每個Aspect的bean定義。
我試過如下:
添加@Component
上SomeAspect
和XML加<context-component-scan>
包含我的方面希望我的課被拿起作爲一個Bean並作爲看點相應的包裝物。 但是,我的方面根本沒有得到迴應。
任何指針?
完美!它只適用於包含過濾器...這是有點令人驚訝,因爲它應該默認拾取。謝謝@ nicholas.hauschild! – Vikram