LoginSignup
5
4

More than 5 years have passed since last update.

任意のオブジェクトにAspectを適用させる方法

Posted at

Bean として定義していないオブジェクトに対して Aspect を適用させたい場合には、以下のように AspectJProxyFactory を使用すると可能です。

AspectJProxyFactory は spring-aop の org.springframework.aop.aspectj.annotation パッケージにいます。

AspectJProxyFactory proxyFactory = new AspectJProxyFactory(target);
proxyFactory.addAspect(aspect);
Target weaved = proxyFactory.getProxy();
5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4