Currently I have 1 Guice module in my project which defines all bindi开发者_运维百科ngs. Now I want to write integration tests and I need to bind the dependencies of a specific class. If I use the exi
I\'m using guice-persist and I would like to know if there is any to inject or resolver properties from a Java property file into the persistence.xml file like I would do with Spring. For example:
I\'m playing around with Shiro and would like to configure roles via the ShiroWebModule. addFilterChain(\"/**\", AUTHC);
I want to inject a Provider<T>, in something开发者_运维百科 like this: class Work { Provider<Tool> provider;
I set up this binding with Guice bindConstant().annotatedWith( SecurityCookie.class ).to(\"JSESSIONID\");
In my GWT application i\'m trying to setup a DI mechanism wihich would allow me to have all the commonly necessary stuff at hand everywhere. I\'m using google-gin which is an adaptation of guice for G
I searched for a solution to use Guice Dependency injection together with RequestFactory. I stumbled upon this: https://github.com/etiennep
I find using JAXB together with Guice possible, but challenging: Both libraries \"fight\" for control over object creation, you have to be careful to avoid cyclic dependencies, and it can get messy wi
I have sucessfully used Guice to Inject Providers into the servlet portion of an existing java web application, however, I can\'t access the injectors through the business layer (non-servlet java clas
I need to serve my main application with the url pattern \"/*\" so this pattern is matched to a Servlet.