Avoid FactoryBean initialization on isSingleton check for decorated bean definition
Issue: SPR-14892 Issue: SPR-15042
This commit is contained in:
@@ -29,15 +29,15 @@ import static org.springframework.tests.TestResourceUtils.*;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mark Fisher
|
* @author Mark Fisher
|
||||||
* @author Chris Beams
|
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
|
* @author Chris Beams
|
||||||
*/
|
*/
|
||||||
public class ScopedProxyAutowireTests {
|
public class ScopedProxyAutowireTests {
|
||||||
|
|
||||||
private static final Class<?> CLASS = ScopedProxyAutowireTests.class;
|
private static final Resource SCOPED_AUTOWIRE_FALSE_CONTEXT =
|
||||||
|
qualifiedResource(ScopedProxyAutowireTests.class, "scopedAutowireFalse.xml");
|
||||||
private static final Resource SCOPED_AUTOWIRE_TRUE_CONTEXT = qualifiedResource(CLASS, "scopedAutowireTrue.xml");
|
private static final Resource SCOPED_AUTOWIRE_TRUE_CONTEXT =
|
||||||
private static final Resource SCOPED_AUTOWIRE_FALSE_CONTEXT = qualifiedResource(CLASS, "scopedAutowireFalse.xml");
|
qualifiedResource(ScopedProxyAutowireTests.class, "scopedAutowireTrue.xml");
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@@ -45,6 +45,8 @@ public class ScopedProxyAutowireTests {
|
|||||||
DefaultListableBeanFactory bf = new DefaultListableBeanFactory();
|
DefaultListableBeanFactory bf = new DefaultListableBeanFactory();
|
||||||
new XmlBeanDefinitionReader(bf).loadBeanDefinitions(SCOPED_AUTOWIRE_FALSE_CONTEXT);
|
new XmlBeanDefinitionReader(bf).loadBeanDefinitions(SCOPED_AUTOWIRE_FALSE_CONTEXT);
|
||||||
assertTrue(Arrays.asList(bf.getBeanNamesForType(TestBean.class, false, false)).contains("scoped"));
|
assertTrue(Arrays.asList(bf.getBeanNamesForType(TestBean.class, false, false)).contains("scoped"));
|
||||||
|
assertTrue(Arrays.asList(bf.getBeanNamesForType(TestBean.class, true, false)).contains("scoped"));
|
||||||
|
assertFalse(bf.containsSingleton("scoped"));
|
||||||
TestBean autowired = (TestBean) bf.getBean("autowired");
|
TestBean autowired = (TestBean) bf.getBean("autowired");
|
||||||
TestBean unscoped = (TestBean) bf.getBean("unscoped");
|
TestBean unscoped = (TestBean) bf.getBean("unscoped");
|
||||||
assertSame(unscoped, autowired.getChild());
|
assertSame(unscoped, autowired.getChild());
|
||||||
@@ -54,7 +56,9 @@ public class ScopedProxyAutowireTests {
|
|||||||
public void testScopedProxyReplacesAutowireCandidateTrue() {
|
public void testScopedProxyReplacesAutowireCandidateTrue() {
|
||||||
DefaultListableBeanFactory bf = new DefaultListableBeanFactory();
|
DefaultListableBeanFactory bf = new DefaultListableBeanFactory();
|
||||||
new XmlBeanDefinitionReader(bf).loadBeanDefinitions(SCOPED_AUTOWIRE_TRUE_CONTEXT);
|
new XmlBeanDefinitionReader(bf).loadBeanDefinitions(SCOPED_AUTOWIRE_TRUE_CONTEXT);
|
||||||
|
assertTrue(Arrays.asList(bf.getBeanNamesForType(TestBean.class, true, false)).contains("scoped"));
|
||||||
assertTrue(Arrays.asList(bf.getBeanNamesForType(TestBean.class, false, false)).contains("scoped"));
|
assertTrue(Arrays.asList(bf.getBeanNamesForType(TestBean.class, false, false)).contains("scoped"));
|
||||||
|
assertFalse(bf.containsSingleton("scoped"));
|
||||||
TestBean autowired = (TestBean) bf.getBean("autowired");
|
TestBean autowired = (TestBean) bf.getBean("autowired");
|
||||||
TestBean scoped = (TestBean) bf.getBean("scoped");
|
TestBean scoped = (TestBean) bf.getBean("scoped");
|
||||||
assertSame(scoped, autowired.getChild());
|
assertSame(scoped, autowired.getChild());
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<config xmlns="http://www.springframework.org/schema/aop"
|
<config xmlns="http://www.springframework.org/schema/aop"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
|
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
|
||||||
|
|
||||||
<pointcut id="testPointcut" expression="execution(* foo(..)) and within(springbank.dao.AccountDao+)"/>
|
<pointcut id="testPointcut" expression="execution(* foo(..)) and within(springbank.dao.AccountDao+)"/>
|
||||||
<pointcut id="testPointcut1" expression="execution(* springbank.dao.AccountDao.foo(..))"/>
|
<pointcut id="testPointcut1" expression="execution(* springbank.dao.AccountDao.foo(..))"/>
|
||||||
@@ -9,4 +9,4 @@
|
|||||||
<after method="foo" pointcut-ref="testPointcut"/>
|
<after method="foo" pointcut-ref="testPointcut"/>
|
||||||
</aspect>
|
</aspect>
|
||||||
|
|
||||||
</config>
|
</config>
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
xmlns:aop="http://www.springframework.org/schema/aop"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
|
||||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
|
||||||
|
|
||||||
<bean id="scoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire-candidate="false">
|
<bean id="scoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" scope="prototype" autowire-candidate="false">
|
||||||
<aop:scoped-proxy/>
|
<aop:scoped-proxy/>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="unscoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire-candidate="true"/>
|
<bean id="unscoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire-candidate="true"/>
|
||||||
|
|
||||||
<bean id="autowired" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire="byType"/>
|
<bean id="autowired" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire="byType"/>
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
xmlns:aop="http://www.springframework.org/schema/aop"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
|
||||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
|
||||||
|
|
||||||
<bean id="scoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire-candidate="true">
|
<bean id="scoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" scope="singleton" autowire-candidate="true">
|
||||||
<aop:scoped-proxy/>
|
<aop:scoped-proxy/>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="unscoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire-candidate="false"/>
|
<bean id="unscoped" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire-candidate="false"/>
|
||||||
|
|
||||||
<bean id="autowired" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire="byType"/>
|
<bean id="autowired" class="org.springframework.aop.scope.ScopedProxyAutowireTests$TestBean" autowire="byType"/>
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
|||||||
@@ -413,10 +413,12 @@ public class DefaultListableBeanFactory extends AbstractAutowireCapableBeanFacto
|
|||||||
!requiresEagerInitForType(mbd.getFactoryBeanName()))) {
|
!requiresEagerInitForType(mbd.getFactoryBeanName()))) {
|
||||||
// In case of FactoryBean, match object created by FactoryBean.
|
// In case of FactoryBean, match object created by FactoryBean.
|
||||||
boolean isFactoryBean = isFactoryBean(beanName, mbd);
|
boolean isFactoryBean = isFactoryBean(beanName, mbd);
|
||||||
boolean matchFound = (allowEagerInit || !isFactoryBean ||
|
BeanDefinitionHolder dbd = mbd.getDecoratedDefinition();
|
||||||
(mbd.getDecoratedDefinition() != null && !mbd.isLazyInit()) ||
|
boolean matchFound =
|
||||||
containsSingleton(beanName)) &&
|
(allowEagerInit || !isFactoryBean ||
|
||||||
(includeNonSingletons || isSingleton(beanName)) &&
|
(dbd != null && !mbd.isLazyInit()) || containsSingleton(beanName)) &&
|
||||||
|
(includeNonSingletons ||
|
||||||
|
(dbd != null ? mbd.isSingleton() : isSingleton(beanName))) &&
|
||||||
isTypeMatch(beanName, type);
|
isTypeMatch(beanName, type);
|
||||||
if (!matchFound && isFactoryBean) {
|
if (!matchFound && isFactoryBean) {
|
||||||
// In case of FactoryBean, try to match FactoryBean instance itself next.
|
// In case of FactoryBean, try to match FactoryBean instance itself next.
|
||||||
|
|||||||
@@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2002-2016 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
|
||||||
|
*
|
||||||
|
* http://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.context.annotation;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import org.springframework.aop.framework.ProxyFactoryBean;
|
||||||
|
import org.springframework.aop.target.CommonsPool2TargetSource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Juergen Hoeller
|
||||||
|
*/
|
||||||
|
public class Spr15042Tests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void poolingTargetSource() {
|
||||||
|
new AnnotationConfigApplicationContext(PoolingTargetSourceConfig.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
static class PoolingTargetSourceConfig {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
@Scope(value = "request", proxyMode = ScopedProxyMode.TARGET_CLASS)
|
||||||
|
public ProxyFactoryBean myObject() {
|
||||||
|
ProxyFactoryBean pfb = new ProxyFactoryBean();
|
||||||
|
pfb.setTargetSource(poolTargetSource());
|
||||||
|
return pfb;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public CommonsPool2TargetSource poolTargetSource() {
|
||||||
|
CommonsPool2TargetSource pool = new CommonsPool2TargetSource();
|
||||||
|
pool.setMaxSize(3);
|
||||||
|
pool.setTargetBeanName("myObjectTarget");
|
||||||
|
return pool;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean(name = "myObjectTarget")
|
||||||
|
@Scope(scopeName = "prototype")
|
||||||
|
public Object myObjectTarget() {
|
||||||
|
return new Object();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user