0
votes
1answer
24 views
Guice Creation Exception
Hi Everyone,
I am trying to get Guice working with Struts, Hibernate and Quartz scheduler. When I deploy my application under Tomcat, I get the following error -
Nov 19, 2009 …
0
votes
1answer
39 views
How to vary Constants based on deployment instance
I've been building a GWT 1.7 + GAE application using the eclipse plugin.
The system constants are loaded into a MyConstants.properties file that is loaded by the singleton MyConsta …
1
vote
1answer
106 views
Spring’s IOC with annotations is confusing for a Guice guy. Help to enlighten me
I came into IOC via Google Guice.
And now I've been forced to use Spring 2.5.6 at work & I am lost because Spring is quite complicated. Here are some questions after reading b …
1
vote
4answers
104 views
Using Guice with OSGi
I have a project that I am trying to convert to OSGi. However, this project has been built with Guice as its dependency injection manager. It's a large project with Guice interwove …
4
votes
2answers
92 views
Guice best practices and anti-patterns
I'm not sure if there is merit to this question or not, but are there any best practices and anti-patterns specific to Google Guice?
Please direct any generic DI patterns to this …
2
votes
1answer
74 views
Lifetime management with Google Guice
Is there a recommended pattern for shutting down / closing objects created with Guice?
The lifecycle I'm aiming for is:
Prepare a Guice Module
Create an injector
Use the injecto …
0
votes
2answers
48 views
Is Guice needed in unit test?
I was told the Guice is aim to produce testable code, and not needed in the unit test. But how can I test a Singleton(@Singleton) without use Guice?
0
votes
1answer
53 views
Why my @singleton doesn’t work?
Hi, I met a problem when trying @Singleton of Guice:
import com.google.inject.Singleton;
@Singleton
public class ConfigManager {
private String data;
public void setData …
0
votes
3answers
68 views
Using Guice with circular dependencies
Consider this simple example.
Class A {
B b;
A() {
this.b = new B(this);
}
}
In this example instance A knows about instance B, and instance B knows about instan …
0
votes
2answers
53 views
How to bind Assisted Injected class to interface?
Here is the problem I met:
Class SimpleCommand implements Executable{
private final ConfigManager config;
private String name;
@Inject
public SimpleCommand(ConfigManager con …
1
vote
4answers
297 views
Why there’s no configuration file at all for dependency injection with Google Guice?
I am checking out Google Guice as DI framework but I am a bit puzzled: why there's no configuration file at all?
I found a partial explanation on this question but it is still not …
0
votes
2answers
67 views
How to bind String to variable in Guice?
I'm new to Guice and here is a naive question. I learned that we could bind String to a particular value through:
bind(String.class)
.annotatedWith(Names.named("JDBC URL") …
1
vote
1answer
47 views
Instanciate an injector with multiple AbstractGinModule
In google Guice, I can create an injector based on multiple module with the function createInjector.
Because I use GWT.create to instanciate the injector in GoogleGin, is it possi …
0
votes
2answers
134 views
Getting multiple guice singletons of the same type
can you get 2 singleton instances of the same underlying type?
this is obviously trivial in spring as it is based on named instances to which you attach a scope but I can't see t …
0
votes
3answers
248 views
google gin? use with spring?
i know gin is client side of guice . so in order to use gin. it must be used together with guice? i wonder, can it be used with spring?
