Spring Boot - Spring Annotations
Given the following code, what will be the output when retrieving the bean named "service" from the Spring context?
@Configuration
public class AppConfig {
@Bean
public String service() {
return "MyService";
}
}