介绍

Spring动态创建bean过程, 是如何进行选择使用 jdk还是cglib进行代理的, 可以通过源码进行解析

执行过程

通过断点进行跟踪主要执行过程在 DefaultAopProxyFactory, 通过判断条件是使用Cglib还是Jdk

相关源码解析

  1. public class DefaultAopProxyFactory implements AopProxyFactory, Serializable {
  2. @Override
  3. public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException {
  4. //判断条件 是否优化, 返回是否直接代理目标类以及任何接口或者没有用户提供的代理接口
  5. if (config.isOptimize() || config.isProxyTargetClass() || hasNoUserSuppliedProxyInterfaces(config)) {
  6. Class<?> targetClass = config.getTargetClass();
  7. if (targetClass == null) {
  8. throw new AopConfigException("TargetSource cannot determine target class: " +
  9. "Either an interface or a target is required for proxy creation.");
  10. }
  11. //判断是否是接口, 和已经使用jdk代理
  12. if (targetClass.isInterface() || Proxy.isProxyClass(targetClass)) {
  13. return new JdkDynamicAopProxy(config);
  14. }
  15. return new ObjenesisCglibAopProxy(config);
  16. }
  17. else {
  18. return new JdkDynamicAopProxy(config);
  19. }
  20. }
  21. /**
  22. * Determine whether the supplied {@link AdvisedSupport} has only the
  23. * {@link org.springframework.aop.SpringProxy} interface specified
  24. * (or no proxy interfaces specified at all).
  25. */
  26. private boolean hasNoUserSuppliedProxyInterfaces(AdvisedSupport config) {
  27. Class<?>[] ifcs = config.getProxiedInterfaces();
  28. return (ifcs.length == 0 || (ifcs.length == 1 && SpringProxy.class.isAssignableFrom(ifcs[0])));
  29. }
  30. }