Skip to content

Instantly share code, notes, and snippets.

@learnit-codeit
Created April 20, 2021 08:13
Show Gist options
  • Save learnit-codeit/3e2e7f224bbe809cf53a28b13712f80c to your computer and use it in GitHub Desktop.
Save learnit-codeit/3e2e7f224bbe809cf53a28b13712f80c to your computer and use it in GitHub Desktop.
@Lazy
@Configuration
public class MyLazyConfiguration {
@Bean
public NormalClass normalClass() {
return new NormalClass();
}
@Bean
public LazyClass lazyClass() {
return new LazyClass();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment