16 lines
319 B
Java
16 lines
319 B
Java
package com.baeldung.countingbeans.latestsspring;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
public class MyConfigurationBean {
|
|
|
|
@Bean
|
|
@MyCustomAnnotation
|
|
MyService myService() {
|
|
return new MyService();
|
|
}
|
|
|
|
}
|