Reputation: 303
I'm initiating myself to Google Guice.
I have a simple question :
What is the difference between the javax.inject
's @Inject
annotation and the com.google.inject
's @Inject
one ?
Thanks.
Upvotes: 30
Views: 14680
Reputation: 10094
javax.inject
is a specification derived from google's work (and others)
Difference can be found in Google Guice Wiki
Upvotes: 21