Browse Source
Previously, AopAutoConfiguration would only enable CGLib-based proxies if aspectjweaver was on the classpath. The intention was for CGLib-based proxies to always be used by default so this behaviour was incorrect. This commit updates AopAutoConfiguration to force the use of CGLib-based proxies even in the absence of aspectjweaver. Closes gh-18523pull/18864/head
2 changed files with 91 additions and 10 deletions
@ -0,0 +1,58 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2012-2019 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.boot.autoconfigure.aop; |
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test; |
||||||
|
|
||||||
|
import org.springframework.aop.config.AopConfigUtils; |
||||||
|
import org.springframework.beans.factory.config.BeanDefinition; |
||||||
|
import org.springframework.boot.autoconfigure.AutoConfigurations; |
||||||
|
import org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener; |
||||||
|
import org.springframework.boot.logging.LogLevel; |
||||||
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner; |
||||||
|
import org.springframework.boot.testsupport.classpath.ClassPathExclusions; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests for {@link AopAutoConfiguration} without AspectJ. |
||||||
|
* |
||||||
|
* @author Andy Wilkinson |
||||||
|
*/ |
||||||
|
@ClassPathExclusions("aspectjweaver*.jar") |
||||||
|
class NonAspectJAopAutoConfigurationTests { |
||||||
|
|
||||||
|
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner() |
||||||
|
.withConfiguration(AutoConfigurations.of(AopAutoConfiguration.class)); |
||||||
|
|
||||||
|
@Test |
||||||
|
void whenAspectJIsAbsentAndProxyTargetClassIsEnabledProxyCreatorBeanIsDefined() { |
||||||
|
this.contextRunner.withInitializer(new ConditionEvaluationReportLoggingListener(LogLevel.INFO)) |
||||||
|
.run((context) -> { |
||||||
|
BeanDefinition autoProxyCreator = context.getBeanFactory() |
||||||
|
.getBeanDefinition(AopConfigUtils.AUTO_PROXY_CREATOR_BEAN_NAME); |
||||||
|
assertThat(autoProxyCreator.getPropertyValues().get("proxyTargetClass")).isEqualTo(Boolean.TRUE); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
void whenAspectJIsAbsentAndProxyTargetClassIsDisabledNoProxyCreatorBeanIsDefined() { |
||||||
|
this.contextRunner.withPropertyValues("spring.aop.proxy-target-class:false") |
||||||
|
.run((context) -> assertThat(context).doesNotHaveBean(AopConfigUtils.AUTO_PROXY_CREATOR_BEAN_NAME)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue