-
Notifications
You must be signed in to change notification settings - Fork 38.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate appropriate bean registration code for scoped proxies
Closes gh-28383
- Loading branch information
Showing
4 changed files
with
250 additions
and
0 deletions.
There are no files selected for viewing
115 changes: 115 additions & 0 deletions
115
...n/java/org/springframework/aop/scope/ScopedProxyBeanRegistrationContributionProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
/* | ||
* Copyright 2002-2022 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.aop.scope; | ||
|
||
import java.lang.reflect.Executable; | ||
|
||
import org.apache.commons.logging.Log; | ||
import org.apache.commons.logging.LogFactory; | ||
|
||
import org.springframework.aot.generator.CodeContribution; | ||
import org.springframework.aot.generator.DefaultCodeContribution; | ||
import org.springframework.aot.generator.ProtectedAccess.Options; | ||
import org.springframework.aot.hint.RuntimeHints; | ||
import org.springframework.beans.factory.config.BeanDefinition; | ||
import org.springframework.beans.factory.config.ConfigurableBeanFactory; | ||
import org.springframework.beans.factory.generator.BeanFactoryContribution; | ||
import org.springframework.beans.factory.generator.BeanInstantiationGenerator; | ||
import org.springframework.beans.factory.generator.BeanRegistrationBeanFactoryContribution; | ||
import org.springframework.beans.factory.generator.BeanRegistrationContributionProvider; | ||
import org.springframework.beans.factory.support.RootBeanDefinition; | ||
import org.springframework.javapoet.support.MultiStatement; | ||
import org.springframework.lang.Nullable; | ||
|
||
/** | ||
* {@link BeanRegistrationContributionProvider} for {@link ScopedProxyFactoryBean}. | ||
* | ||
* @author Stephane Nicoll | ||
*/ | ||
class ScopedProxyBeanRegistrationContributionProvider implements BeanRegistrationContributionProvider { | ||
|
||
private static final Log logger = LogFactory.getLog(ScopedProxyBeanRegistrationContributionProvider.class); | ||
|
||
|
||
private final ConfigurableBeanFactory beanFactory; | ||
|
||
ScopedProxyBeanRegistrationContributionProvider(ConfigurableBeanFactory beanFactory) { | ||
this.beanFactory = beanFactory; | ||
} | ||
|
||
@Nullable | ||
@Override | ||
public BeanFactoryContribution getContributionFor(String beanName, RootBeanDefinition beanDefinition) { | ||
Class<?> beanType = beanDefinition.getResolvableType().toClass(); | ||
return (beanType.equals(ScopedProxyFactoryBean.class)) | ||
? createScopedProxyBeanFactoryContribution(beanName, beanDefinition) : null; | ||
} | ||
|
||
@Nullable | ||
private BeanFactoryContribution createScopedProxyBeanFactoryContribution(String beanName, RootBeanDefinition beanDefinition) { | ||
String targetBeanName = getTargetBeanName(beanDefinition); | ||
BeanDefinition targetBeanDefinition = getTargetBeanDefinition(targetBeanName); | ||
if (targetBeanDefinition == null) { | ||
logger.warn("Could not handle " + ScopedProxyFactoryBean.class.getSimpleName() + | ||
": no target bean definition found with name " + targetBeanName); | ||
return null; | ||
} | ||
RootBeanDefinition processedBeanDefinition = new RootBeanDefinition(beanDefinition); | ||
processedBeanDefinition.setTargetType(targetBeanDefinition.getResolvableType()); | ||
processedBeanDefinition.getPropertyValues().removePropertyValue("targetBeanName"); | ||
return new BeanRegistrationBeanFactoryContribution(beanName, processedBeanDefinition, | ||
getBeanInstantiationGenerator(targetBeanName)); | ||
} | ||
|
||
private BeanInstantiationGenerator getBeanInstantiationGenerator(String targetBeanName) { | ||
return new BeanInstantiationGenerator() { | ||
|
||
@Override | ||
public Executable getInstanceCreator() { | ||
return ScopedProxyFactoryBean.class.getDeclaredConstructors()[0]; | ||
} | ||
|
||
@Override | ||
public CodeContribution generateBeanInstantiation(RuntimeHints runtimeHints) { | ||
CodeContribution codeContribution = new DefaultCodeContribution(runtimeHints); | ||
codeContribution.protectedAccess().analyze(getInstanceCreator(), Options.defaults().build()); | ||
MultiStatement statements = new MultiStatement(); | ||
statements.addStatement("$T factory = new $T()", ScopedProxyFactoryBean.class, ScopedProxyFactoryBean.class); | ||
statements.addStatement("factory.setTargetBeanName($S)", targetBeanName); | ||
statements.addStatement("factory.setBeanFactory(beanFactory)"); | ||
statements.addStatement("return factory.getObject()"); | ||
codeContribution.statements().add(statements.toLambdaBody("() ->")); | ||
return codeContribution; | ||
} | ||
}; | ||
} | ||
|
||
@Nullable | ||
private String getTargetBeanName(BeanDefinition beanDefinition) { | ||
Object value = beanDefinition.getPropertyValues().get("targetBeanName"); | ||
return (value instanceof String targetBeanName) ? targetBeanName : null; | ||
} | ||
|
||
@Nullable | ||
private BeanDefinition getTargetBeanDefinition(@Nullable String targetBeanName) { | ||
if (targetBeanName != null && this.beanFactory.containsBean(targetBeanName)) { | ||
return this.beanFactory.getMergedBeanDefinition(targetBeanName); | ||
} | ||
return null; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
org.springframework.beans.factory.generator.BeanRegistrationContributionProvider= \ | ||
org.springframework.aop.scope.ScopedProxyBeanRegistrationContributionProvider |
113 changes: 113 additions & 0 deletions
113
...a/org/springframework/aop/scope/ScopedProxyBeanRegistrationContributionProviderTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/* | ||
* Copyright 2002-2022 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.aop.scope; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.aop.testfixture.scope.SimpleTarget; | ||
import org.springframework.aot.generator.DefaultGeneratedTypeContext; | ||
import org.springframework.aot.generator.GeneratedType; | ||
import org.springframework.beans.factory.config.BeanDefinition; | ||
import org.springframework.beans.factory.config.PropertiesFactoryBean; | ||
import org.springframework.beans.factory.generator.BeanFactoryContribution; | ||
import org.springframework.beans.factory.generator.BeanFactoryInitialization; | ||
import org.springframework.beans.factory.support.BeanDefinitionBuilder; | ||
import org.springframework.beans.factory.support.DefaultListableBeanFactory; | ||
import org.springframework.beans.factory.support.RootBeanDefinition; | ||
import org.springframework.beans.testfixture.beans.factory.generator.factory.NumberHolder; | ||
import org.springframework.core.ResolvableType; | ||
import org.springframework.javapoet.ClassName; | ||
import org.springframework.javapoet.support.CodeSnippet; | ||
import org.springframework.lang.Nullable; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Tests for {@link ScopedProxyBeanRegistrationContributionProvider}. | ||
* | ||
* @author Stephane Nicoll | ||
*/ | ||
class ScopedProxyBeanRegistrationContributionProviderTests { | ||
|
||
private final DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory(); | ||
|
||
@Test | ||
void getWithNonScopedProxy() { | ||
BeanDefinition beanDefinition = BeanDefinitionBuilder.rootBeanDefinition(PropertiesFactoryBean.class) | ||
.getBeanDefinition(); | ||
assertThat(getBeanFactoryContribution("test", beanDefinition)).isNull(); | ||
} | ||
|
||
@Test | ||
void getWithScopedProxyWithoutTargetBeanName() { | ||
BeanDefinition scopeBean = BeanDefinitionBuilder.rootBeanDefinition(ScopedProxyFactoryBean.class) | ||
.getBeanDefinition(); | ||
assertThat(getBeanFactoryContribution("test", scopeBean)).isNull(); | ||
} | ||
|
||
@Test | ||
void getWithScopedProxyWithInvalidTargetBeanName() { | ||
BeanDefinition scopeBean = BeanDefinitionBuilder.rootBeanDefinition(ScopedProxyFactoryBean.class) | ||
.addPropertyValue("targetBeanName", "testDoesNotExist").getBeanDefinition(); | ||
assertThat(getBeanFactoryContribution("test", scopeBean)).isNull(); | ||
} | ||
|
||
@Test | ||
void getWithScopedProxyWithTargetBeanName() { | ||
BeanDefinition targetBean = BeanDefinitionBuilder.rootBeanDefinition(SimpleTarget.class) | ||
.getBeanDefinition(); | ||
beanFactory.registerBeanDefinition("simpleTarget", targetBean); | ||
BeanDefinition scopeBean = BeanDefinitionBuilder.rootBeanDefinition(ScopedProxyFactoryBean.class) | ||
.addPropertyValue("targetBeanName", "simpleTarget").getBeanDefinition(); | ||
assertThat(getBeanFactoryContribution("test", scopeBean)).isNotNull(); | ||
} | ||
|
||
@Test | ||
void writeBeanRegistrationForScopedProxy() { | ||
RootBeanDefinition targetBean = new RootBeanDefinition(); | ||
targetBean.setTargetType(ResolvableType.forClassWithGenerics(NumberHolder.class, Integer.class)); | ||
targetBean.setScope("custom"); | ||
this.beanFactory.registerBeanDefinition("numberHolder", targetBean); | ||
BeanDefinition scopeBean = BeanDefinitionBuilder.rootBeanDefinition(ScopedProxyFactoryBean.class) | ||
.addPropertyValue("targetBeanName", "numberHolder").getBeanDefinition(); | ||
assertThat(writeBeanRegistration("test", scopeBean).getSnippet()).isEqualTo(""" | ||
BeanDefinitionRegistrar.of("test", ResolvableType.forClassWithGenerics(NumberHolder.class, Integer.class)) | ||
.instanceSupplier(() -> { | ||
ScopedProxyFactoryBean factory = new ScopedProxyFactoryBean(); | ||
factory.setTargetBeanName("numberHolder"); | ||
factory.setBeanFactory(beanFactory); | ||
return factory.getObject(); | ||
}).register(beanFactory); | ||
"""); | ||
} | ||
|
||
private CodeSnippet writeBeanRegistration(String beanName, BeanDefinition beanDefinition) { | ||
BeanFactoryContribution contribution = getBeanFactoryContribution(beanName, beanDefinition); | ||
assertThat(contribution).isNotNull(); | ||
BeanFactoryInitialization initialization = new BeanFactoryInitialization(new DefaultGeneratedTypeContext("comp.example", packageName -> GeneratedType.of(ClassName.get(packageName, "Test")))); | ||
contribution.applyTo(initialization); | ||
return CodeSnippet.of(initialization.toCodeBlock()); | ||
} | ||
|
||
@Nullable | ||
BeanFactoryContribution getBeanFactoryContribution(String beanName, BeanDefinition beanDefinition) { | ||
ScopedProxyBeanRegistrationContributionProvider provider = new ScopedProxyBeanRegistrationContributionProvider(this.beanFactory); | ||
return provider.getContributionFor(beanName, (RootBeanDefinition) beanDefinition); | ||
} | ||
|
||
} | ||
|
20 changes: 20 additions & 0 deletions
20
spring-aop/src/testFixtures/java/org/springframework/aop/testfixture/scope/SimpleTarget.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright 2002-2022 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.aop.testfixture.scope; | ||
|
||
public class SimpleTarget { | ||
} |