Reputation: 4239
I'd like to know if there is any DI container for Java world that behaves close to .NET ones, namely, I want these 2 features:
It looks like Swing and Guice require @Inject, but I will be happy, if I'm wrong.
Upvotes: 2
Views: 232
Reputation: 4239
Pico satisfies 1st requirement. 2nd requirement can be more or less done with org.reflections library and this SO answer
Upvotes: 1