Guice is a lightweight dependency injection framework for Java.
1
vote
1answer
21 views
Using Assisted Inject with FactoryModuleBuilder in guice - Factory injection not being done
I am a guice newbie trying to figure out how to implement assisted inject in the guice using FactoryModuleBuilder. I consulted the guice java docs for implementing FactoryModuleBuilder.
I have done ...
0
votes
2answers
38 views
Injected constructors, unit testing and best practices
This is a slightly esoteric questions about how public to make constructors when using an IoC container. I'm using java, Guice and Junit4, but I'm sure this question is more general.
Under Best ...
0
votes
1answer
31 views
Guice: How can I cache data
I am new to Guice and have a question regarding caching.
I have a web app which uses a provider to provide user configurations.
...
1
vote
0answers
33 views
java.lang.StackOverflowError - Guice and Google App Engine
I mapped a servlet in my application like this with Google Guice:
protected void configureServlets() {
serve("/_ah/*").with(DatastoreViewerServlet.class);
}
And I get this StackOverFlow error:
...
0
votes
0answers
42 views
Can't access: _ah/admin/datastore
I can't access:
http://127.0.0.1:8888/_ah/admin/datastore
I'm pretty sure that the datastore is alive, as when the app put and get it works fine.
What could be the problem that I can't access it? ...
1
vote
1answer
33 views
Playframework & Guice without routing
I would like to know if it's possible to inject dependencies using Guice without having to pass by the routing.
If it is how can I call my class Test @Inject()... within my application ?
0
votes
1answer
27 views
Multiple provider for a class in Guice
I have a Guice whose constructor accept an injected argument:
@Singleton
public class MyClass {
private MyConfiguration myConfiguration;
@Inject
public MyClass(MyConfiguration ...
0
votes
1answer
18 views
Guice / CDI / JEE6 Why does instance.select(qualifiers) use instances instead of Annotation of MyQualifier.class?
Say you have this injection point:
@Inject
private Instance<DeliveryEndpoint> allEndpoints;
And you want to select a subgroup of endpoints annotated with @ActiveEndpoint
...
0
votes
1answer
34 views
Guice doesn't inject morphia returned object
I have a class that identifies a field with @Inject. I persist this object to MongoDB using morphia. When the time comes to get the object back, I execute a query, like this:
MorphiaVersionedPerson ...
0
votes
1answer
15 views
Guice iterating over multiple bindings
If I have an interface IBaseFunction and multiple implementations for this interface.
How can I iterate over the bindings calling a method on each i.e.
public class MyModule extends AbstractModule {
...
0
votes
0answers
26 views
Quartz + Guice seems that transacations are skiped
I'am using Quartz Scheduler in my Guice application, for some very simple job which should call some web service, and based on the response update rows in the database. The problem I have here is that ...
0
votes
0answers
30 views
Google Guice & Jersey multiple URL patterns to same servlet while applying package filtering
I am trying, using Jersey & Google Guice 3.0, to map 2 different URL patterns to the same servlet and each of these URL patterns to be applied to a different package in my project.
To be clear I ...
0
votes
1answer
35 views
Guice Dependency Injection over method, first steps
Im using Java 1.6 with guice 3.0 and im trying to get Dependency Injection working.
I want to switch from Manual Dependency Injection to guice.
Heres My class wehere i want to use the dependency:
...
0
votes
2answers
40 views
roboguice - how to manually create a new object
I have a Customer class and i have injected it's dependencies with the @Inject annotation. I'd like to create a method in this class that returns a new instance of the class.
class Customer{
...
0
votes
1answer
26 views
Equivalent of @ImplementedBy in Spring
What is the equivalent of Guice's @ImplementedBy annotation in Spring DI? (I googled it but with no results.)
0
votes
0answers
23 views
Equivalent of Guice g.bind().annotatedwith() in Spring
What is the equivalent of Guice's:
g.bind(MessageListener.class).annotatedWith(Names.named("operator")).to(Operator.class);
Operator is just a class, MessageListener is an interface.
I would like ...
0
votes
1answer
37 views
Guice: Creating more than one object instance with different configurations
I would like to know what is the best practice for the following problem:
I want have 2 instances of some class (BlockingQueue in particular) to inject them into my other classes. Each of these ...
1
vote
2answers
51 views
How can I inject a class to 'Class<?> clazz' in Guice?
I have a class with a constructor, e.g.:
@Inject
public ClassTest(ITestInterface testInterface, Class<?> clazz){
...
}
The problem is how do I bind a class to an implementation which ...
2
votes
2answers
33 views
Equivalency of Guice Provider in Spring
What is the equivalency of Guice's Provider in Spring?
Here is the Guice code I need to replace with Spring:
public class MyProxyProvider implements Provider<MyProxy> {
@Inject
Config config;
...
0
votes
0answers
30 views
How to use jsr 330 annotation in an “IoC container” independent manner?
Pardon my language if question is not clear. I want to use JSR 330 annotations. And I want to be able switch my DI provider. At present my application has to to know at some point that it has to use ...
1
vote
1answer
46 views
Is an unbound SecurityManager really an invalid application configuration in Shiro?
I'm adding Apache Shiro to my application and I'm wondering if the following error message is truly accurate:
org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to ...
0
votes
1answer
41 views
How to configure the Maven dependency for Guice 3.0 for use without AOP?
I have an Android Maven project and want to use Google Guice 3.0 in it.
There is a "No-AOP" version of Guice, which is compatible with Android.
How can I tell Maven to use the "No-AOP" version of ...
1
vote
1answer
135 views
Origin is not allowed by Access-Control-Allow-Origin - how to enable CORS using a very simple web stack and guice
I am not sure if the issue is the technologies involved, or my understanding of the technologies.
I have an html5 application written in javascript and html hosted on an apache 2.2 server.
I have a ...
2
votes
1answer
37 views
Difference between singleton and eagersingleton for Gin or Guice?
I was wondering what is the different between singleton and eagersingleton for Gin or Guice?
2
votes
2answers
60 views
Guice assisted injection deeper down the dependency hierarchy
I want to conduct a chain of processing elements and wire them together via Guice. Let's assume the following path:
interface A implemented by class AImpl needs some input
interface B implemented by ...
1
vote
1answer
62 views
GIN AssistedInject issue with factory “Unable to create or inherit binding”
I am getting an strange error which I cannot get past when using Assisted Injection:
[DEBUG] [project] - Rebinding com.gwtplatform.mvp.client.DesktopGinjector
[DEBUG] [project] - Invoking generator ...
1
vote
2answers
85 views
Register web.xml listeners using guice servlet module
I'm using guice and guice servlet in my project.
I can map servlets and filters in a servletmodule using the serve(...) and filter(...) methods.
How do you register a listener (listener-tag in ...
0
votes
1answer
45 views
Guice submodules prevent inheriting bindings
I would like to accomplish the following without introducing annotations or using string key names, is it possible using Guice? Also, introducing a third private module for MyService and its ...
1
vote
1answer
54 views
How to let Jersey instantiate and manage the life-cycle and let Guice perform injection
I have referred to this link for the guide on how to do it.
https://jersey.java.net/nonav/apidocs/latest/jersey/contribs/jersey-guice/com/sun/jersey/guice/spi/container/servlet/package-summary.html
I ...
0
votes
1answer
58 views
Google guice inject a instance created by Spring and method intercept
I use Gucie 3.0 to intercept any methods that have my defined annotation @LogRequired. However for my application, some beans are initialized by Spring with injected fields values. After calling giuce ...
0
votes
0answers
33 views
GuiceServletConfig error
Technologies used are GWT 2.5.1, GWTP 1-RC4, GAE 1.7.7.1, Eclipse Juno
1 - I have the folowing error :
Apr 23, 2013 1:35:34 PM com.google.apphosting.utils.jetty.JettyLogger warn
Avertissement: Could ...
0
votes
1answer
41 views
Executing function with param(s) in Google Guice
I have the following module to convert to Guice:
Serializer serializer = new SerializerBinaryImpl("testdong");
Dong dong = new DongImplementation();
View view = new TextView(dong);
...
0
votes
0answers
30 views
fetch value from cookie giving issue
When user login first time I set the user value in cookie and then set cookie in the response.
This is my code snippet:
Cookie cookie = new Cookie("userId","1");
cookie.setMaxAge((7*24) * 60 * 60);
...
0
votes
1answer
43 views
Guice multi database auto switch
I have three database cofinguration
local db for unit test environment
test db for development environment
online db for product environment
How Can I automatic inject different db properties ...
0
votes
1answer
29 views
guice, MapBinder and Parametrized Interfaces
I am using guice and the MapBinder. I have the following Service interface:
public interface IService<K, V>
and two implementations:
public class AService implements IService<String, ...
0
votes
1answer
45 views
Required entities listing in persistence.xml on GAE?
I'm developing an application that uses GAE, Guice, JPA 2.0 and Jersey. I want to get rid of adding each entity class as a <class> element in my persistence.xml.
Answers for this question talk ...
0
votes
1answer
36 views
Guice Binding for List of generic Objects
What is the binding statement I need to tell guice to that I want a OneFoo and a TwoFoo injected into Bar as a List of Foo? The setup here is a chain of responsibility. Right now I have two ...
0
votes
0answers
79 views
Cucumber JVM for Scala with Guice & Cucumber JUnitRunner?
We are using Cucumber JVM for Scala and as the application grows it would be nice to cucumber-guice in the picture as well.
The problem is that I can't see any useable ...
1
vote
1answer
62 views
Guice unbounded generic binding
I want to provide generic instances without explicitly stating generic parameters inside module implementation.
Let's say I have a very optimized Map implementation and want everyone to use that.
...
0
votes
1answer
50 views
Guice: cannot inject assisted List<Long>
I just started learning how to use Guice and I'm having some trouble trying to configure assisted injections. I have the following interface:
public interface Individual extends ...
1
vote
1answer
30 views
Using GuiceFilter with Jetty WebAppContext.setParentLoaderPriority(true)
I am using GuiceFilter under Jetty. Normally everything works fine, but when I enable WebAppContext.setParentLoaderPriority(true) all of a sudden a single HTTP request results in the same filter being ...
1
vote
1answer
54 views
Guice ServeContextListener does not kick-in
I'm trying to do a @Named inject for a bound String in the ServeContextListener, however I always get that the String is not bound exception. So I guess the ServeContextListener does not kick in.
...
1
vote
1answer
37 views
Where to find the DatastoreViewerServlet - GAE?
My application JAX-RS/Guice mappings overrides the GAE SDK admin mappings. So I need to explicitly "serve" it through the Guice serve module
...
1
vote
2answers
42 views
Replacing abstract factory with Guice?
I am new to Guice and I was wondering how far I can take it.
I have an interface UserInfo with multiple implementing classes GoogleUserInfo, FacebookUserInfo, TwitterUserInfo etc. These classes are ...
0
votes
1answer
50 views
How to inject Google App Engine datastore with Guice?
I'm trying to inject Google App Engine's datastore via Guice into my service:
public class FooServiceImpl implements FooService {
private final DatastoreService datastoreService;
@Inject
...
0
votes
0answers
27 views
Can I use @Transactional from Guice with Google App Engine's Datastore?
Can I do something like this? Would it still be a transaction even though I did not use ds.get(tx, key) and ds.put(tx, key)?
public class MyClass {
private final DatastoreService ds;
...
1
vote
1answer
77 views
Associating FXML and Controller in Guice's Module configuration
In my Guice Module I want to associate FXML files and their controllers, currently it looks like this:
public class GuiceModule extends AbstractModule
{
@Override
protected void ...
0
votes
1answer
62 views
Accessing Guice injector in its Module?
I am extending Guice's AbstractModule and inside of the extending class I need access to Guice's injector. It that possible, if yes, how?
0
votes
1answer
101 views
JPA on Google App Engine: When calling persist(…), does it always happen in a transaction?
In my application I am persisting an entity that has a number of unowned children.
It seems that the call to persist which does the persisting of the entity and all children happens inside a ...
0
votes
0answers
32 views
Jersey explictly call exception mapper in a resource
I have a resource that is responsible for handling batch requests for another resource. This means that the batch resource gets a list of things that it translates to multiple requests in the resource ...

