Untitled
Anonymous
plain_text
07/16/2024 8:39 PM
276 B
30
Indexable
@Configuration
public class AppConfig {
@Bean
public Item item1() {
return new ItemImpl1();
}
@Bean
public Store store() {
return new Store(item1());
}
}Editor is loading...
Leave a Comment