Spring方面的编译时代码检测的Ant目标
作者:互联网
我已经使用Netbeans 6.7和Ant开发了一个Web应用程序.该webapp可以工作,但是我想重构代码以使用@Configurable Spring注释进行更清洁的依赖注入.
我能够使Spring方面的加载时编织(LTW)间歇性地工作(请参见http://forum.springsource.org/showthread.php?t=86904).
在这一点上,我想对我的工具集使用编译时编织.
有人可以提供我可以用来在编译时编织Spring方面的Ant目标吗?
任何解释了如何在代码编译后立即配置Netbeans以执行新Ant目标的人都将获得额外的荣誉.
谢谢.
解决方法:
<iajc outjar="demo.jar">
<sourceroots>
<pathelement location=”src” />
<pathelement location=".." />
</sourceroots>
<aspectpath>
<pathelement location="org.springframework.aspects-3.0.0.RC1.jar" />
</aspectpath>
</iajc>
有关完整示例,请参见AspectJ开发指南iajc sample.
标签:spring,aop,compile-time-weaving 来源: https://codeday.me/bug/20191011/1894516.html