|
1 | 1 | /*
|
2 |
| - * Copyright 2002-2013 the original author or authors. |
| 2 | + * Copyright 2002-2014 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
|
21 | 21 | import org.springframework.aop.SpringProxy;
|
22 | 22 |
|
23 | 23 | /**
|
24 |
| - * Default {@link AopProxyFactory} implementation, |
25 |
| - * creating either a CGLIB proxy or a JDK dynamic proxy. |
| 24 | + * Default {@link AopProxyFactory} implementation, creating either a CGLIB proxy |
| 25 | + * or a JDK dynamic proxy. |
26 | 26 | *
|
27 |
| - * <p>Creates a CGLIB proxy if one the following is true |
28 |
| - * for a given {@link AdvisedSupport} instance: |
| 27 | + * <p>Creates a CGLIB proxy if one the following is true for a given |
| 28 | + * {@link AdvisedSupport} instance: |
29 | 29 | * <ul>
|
30 |
| - * <li>the "optimize" flag is set |
31 |
| - * <li>the "proxyTargetClass" flag is set |
| 30 | + * <li>the {@code optimize} flag is set |
| 31 | + * <li>the {@code proxyTargetClass} flag is set |
32 | 32 | * <li>no proxy interfaces have been specified
|
33 | 33 | * </ul>
|
34 | 34 | *
|
35 |
| - * <p>Note that the CGLIB library classes have to be present on |
36 |
| - * the class path if an actual CGLIB proxy needs to be created. |
37 |
| - * |
38 |
| - * <p>In general, specify "proxyTargetClass" to enforce a CGLIB proxy, |
| 35 | + * <p>In general, specify {@code proxyTargetClass} to enforce a CGLIB proxy, |
39 | 36 | * or specify one or more interfaces to use a JDK dynamic proxy.
|
40 | 37 | *
|
41 | 38 | * @author Rod Johnson
|
|
0 commit comments