MindIQ Academy
1 / 100
Spring Core and IoC

Question 1

Given this configuration, which statement best describes the bean named client?

@Configuration
class AppConfig {
    @Bean
    Client client(Service service) {
        return new Client(service);
    }
}