java - Injections in guice don't work everywhere -
this question has answer here:
i'm trying inject service google guice @inject annotation:
@inject service service;
this inject working not in places. when doesn't work catch null pointer. can problem ? obviously, attemps within single project
if not create instances .getinstance()
nothing injected. annotation not magic.
you have use requeststaticinjection()
on static
references annotated @inject
.
Comments
Post a Comment