separate configs
This commit is contained in:
parent
32a9212fc9
commit
588f84aa83
|
@ -1,8 +1,7 @@
|
|||
package com.baeldung.scope;
|
||||
package com.baeldung.config.scope;
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Qualifier;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.context.annotation.Scope;
|
|
@ -13,7 +13,7 @@ import org.springframework.context.annotation.Configuration;
|
|||
import org.springframework.context.annotation.Scope;
|
||||
|
||||
@Configuration
|
||||
@ComponentScan("com.baeldung.scope")
|
||||
@ComponentScan(value="com.baeldung.scope")
|
||||
public class AppConfig {
|
||||
|
||||
@Bean
|
||||
|
|
|
@ -9,19 +9,18 @@ import org.springframework.test.context.ContextConfiguration;
|
|||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||||
import org.springframework.test.context.support.AnnotationConfigContextLoader;
|
||||
|
||||
import com.baeldung.factorybean.FactoryBeanAppConfig;
|
||||
import com.baeldung.config.scope.AppConfigFunctionBean;
|
||||
import com.baeldung.scope.prototype.PrototypeBean;
|
||||
import com.baeldung.scope.singletone.SingletonFunctionBean;
|
||||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(loader = AnnotationConfigContextLoader.class, classes = FactoryBeanAppConfig.class)
|
||||
@ContextConfiguration(loader = AnnotationConfigContextLoader.class, classes = AppConfigFunctionBean.class)
|
||||
public class PrototypeFunctionBeanIntegrationTest {
|
||||
|
||||
|
||||
@Test
|
||||
public void givenPrototypeInjection_WhenFunction_ThenNewInstanceReturn() {
|
||||
|
||||
AbstractApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
|
||||
AbstractApplicationContext context = new AnnotationConfigApplicationContext(AppConfigFunctionBean.class);
|
||||
|
||||
SingletonFunctionBean firstContext = context.getBean(SingletonFunctionBean.class);
|
||||
SingletonFunctionBean secondContext = context.getBean(SingletonFunctionBean.class);
|
||||
|
|
Loading…
Reference in New Issue