kametic / nuun-framework

Nuun.io (was NuunFramework) is a set of library that helps you create your java enterprise stack.
14 stars 5 forks source link

Implements @Nullable injections / Guice Restart #59

Open kametic opened 10 years ago

kametic commented 10 years ago

Allows the following

@Inject @Nullable MyService myService;

If myService does not have a binding defined, 1) catch CreationException 2) remove the binding from the module using Guice SPI. 3) restart guice

@Nullable marks an injection as optionnal