26 lines
724 B
Java
26 lines
724 B
Java
package com.baeldung.configuration;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import com.baeldung.dependency.AnotherArbitraryDependency;
|
|
import com.baeldung.dependency.ArbitraryDependency;
|
|
|
|
@Configuration
|
|
public class ApplicationContextTestAutowiredQualifier {
|
|
|
|
@Bean
|
|
public ArbitraryDependency autowiredFieldDependency() {
|
|
ArbitraryDependency autowiredFieldDependency = new ArbitraryDependency();
|
|
|
|
return autowiredFieldDependency;
|
|
}
|
|
|
|
@Bean
|
|
public ArbitraryDependency anotherAutowiredFieldDependency() {
|
|
ArbitraryDependency anotherAutowiredFieldDependency = new AnotherArbitraryDependency();
|
|
|
|
return anotherAutowiredFieldDependency;
|
|
}
|
|
}
|