chopikadze
chopikadze

Reputation: 4239

DI container for Java without @Inject

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

Answers (1)

chopikadze
chopikadze

Reputation: 4239

Pico satisfies 1st requirement. 2nd requirement can be more or less done with org.reflections library and this SO answer

Upvotes: 1

Related Questions