@ -1,5 +1,5 @@
/ *
/ *
* Copyright 2012 - 201 6 the original author or authors .
* Copyright 2012 - 201 7 the original author or authors .
*
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* you may not use this file except in compliance with the License .
@ -45,14 +45,14 @@ public class AopAutoConfiguration {
@Configuration
@Configuration
@EnableAspectJAutoProxy ( proxyTargetClass = false )
@EnableAspectJAutoProxy ( proxyTargetClass = false )
@ConditionalOnProperty ( prefix = "spring.aop" , name = "proxy-target-class" , havingValue = "false" , matchIfMissing = tru e)
@ConditionalOnProperty ( prefix = "spring.aop" , name = "proxy-target-class" , havingValue = "false" , matchIfMissing = fals e)
public static class JdkDynamicAutoProxyConfiguration {
public static class JdkDynamicAutoProxyConfiguration {
}
}
@Configuration
@Configuration
@EnableAspectJAutoProxy ( proxyTargetClass = true )
@EnableAspectJAutoProxy ( proxyTargetClass = true )
@ConditionalOnProperty ( prefix = "spring.aop" , name = "proxy-target-class" , havingValue = "true" , matchIfMissing = fals e)
@ConditionalOnProperty ( prefix = "spring.aop" , name = "proxy-target-class" , havingValue = "true" , matchIfMissing = tru e)
public static class CglibAutoProxyConfiguration {
public static class CglibAutoProxyConfiguration {
}
}