Skip to content

Instantly share code, notes, and snippets.

@jeffque
Last active December 12, 2019 04:54
Show Gist options
  • Select an option

  • Save jeffque/76cc7be8fe7c88b7f95948838fa3b132 to your computer and use it in GitHub Desktop.

Select an option

Save jeffque/76cc7be8fe7c88b7f95948838fa3b132 to your computer and use it in GitHub Desktop.
Ensinando ao Spring os singletons
@Configuration
public class NucleoConfig {
...
@Bean
public DescontoNgc getDescontoNgc() {
return DescontoNgc.getInstance();
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment