Reputation: 7940
I was wondering what is the different between singleton and eagersingleton for Gin or Guice?
Upvotes: 9
Views: 6047
Reputation: 32323
From Guice's Wiki
Eager singletons reveal initialization problems sooner, and ensure end-users get a consistent, snappy experience. Lazy singletons enable a faster edit-compile-run development cycle. Use the Stage enum to specify which strategy should be used.
Upvotes: 11