Tagged Questions

Guice is Google's lightweight dependency injection framework for Java 5 and above.

learn more… | top users | synonyms

28
votes
3answers
3k views

Google Guice vs. PicoContainer for Dependency Injection

My team is researching dependency injection frameworks and is trying to decide between using Google-Guice and PicoContainer. We are looking for several things in our framework: A small code ...
24
votes
1answer
4k views

Overriding Binding in Guice

I've just started playing with Guice, and a use-case I can think of is that in a test I just want to override a single binding. I think I'd like to use the rest of the production level bindings to ...
19
votes
5answers
8k views

In what maven2 repository can Google Guice be found?

As far as I understand Google Guice 2.0 is out not so long ago. But I see that central repo still has outdated 1.0 version. Please, tell where can I find maven2 repository with Google Guice 2.0.
18
votes
2answers
1k 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 question.
17
votes
6answers
5k views

Practical advice on using Jersey and Guice for RESTful service

From what I can find online, the state of the art for Guice + Jersey integration has stagnated since 2008 when it appears both teams reached an impasse. The crux of the issue is that JAX-RS ...
16
votes
3answers
2k views

Hidden Features of Google Guice

Google Guice provides some great dependency injection features. I came across the @Nullable feature recently which allows you to mark constructor arguments as optional (permitting null) since Guice ...
16
votes
5answers
3k views

Which Java Web Framework fits best with Google Guice?

I'm planning to start on a new project and am looking at the current state-of-the-art Java web frameworks. I decided to build my application around Guice, and am likely to use a very lightweight ORM ...
16
votes
8answers
7k views

Python Dependency Injection Framework

Is there a framework equivalent to Guice (http://code.google.com/p/google-guice) for Python?
14
votes
1answer
1k views

Why java classes do not inherit annotations from implemented interfaces?

I've been using Guice's AOP to intercept some method calls. My class implements an interface and I would like to annotate the interface methods so Guice could select the right methods. Even if the ...
14
votes
1answer
2k views

What's new in Google Guice 3?

Guice 3 is just around the corner, but I cannot find a page telling me what's new in this version. So, what's new in Guice 3?
14
votes
6answers
701 views

Is there ever a case for 'new' when using dependency injection?

Does dependency injection mean that you don't ever need the 'new' keyword? Or is it reasonable to directly create simple leaf classes such as collections? In the example below I inject the ...
14
votes
6answers
2k views

Are you using Google Guice in a production system?

Have you found Guice useful to manage DI in you applications or run stress tests or even brought an application using Guice to a production phase in your company? If you have, have you run into any ...
12
votes
3answers
3k views

Guice, JDBC and managing database connections

I'm looking to create a sample project while learning Guice which uses JDBC to read/write to a SQL database. However, after years of using Spring and letting it abstract away connection handling and ...
12
votes
4answers
3k views

Should I use Spring or Guice for a Tomcat/Wicket/Hibernate project?

I'm building a new web application that uses Linux, Apache, Tomcat, Wicket, JPA/Hibernate, and MySQL. My primary need is Dependency Injection, which both Spring and Guice can do well. I think I need ...
11
votes
1answer
148 views

JAXB and Guice: How to integrate and visualize?

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 with ...
11
votes
3answers
499 views

Swing with Guice

I'm already using Guice for the data model of my app, and so far I'm quite happy with it. However, the GUI part is about to become a Big Ball of Mud. I find it hard to use Guice here, because Swing ...
11
votes
2answers
787 views

How does guice's TypeLiteral work?

How does Guice's TypeLiteral overcome the Java generic types erasure procedure? It works wonders but how is this accomplished?
11
votes
5answers
1k views

Implementing dynamic plugins in Java

I'd like to implement a dynamic plugin feature in a Java application. Ideally: The application would define an interface Plugin with a method like getCapabilities(). A plugin would be a JAR ...
11
votes
3answers
905 views

A Guice-ready security framework?

Has anybody seen a framework which is either written to work with Guice or a library that integrates an existing security system (ie: Acegi) with Guice? I have found the following thus far... ...
10
votes
1answer
553 views

Guice Performance on Android

As a Java developer I've become accustomed to having dependency injection available in applications. For Android though, I am especially wary of performance. What are the performance implications ...
10
votes
7answers
598 views

Java Dependency injection: XML or annotations

Annotations becoming popular. Spring-3 supports them. CDI depends on them heavily (I can not use CDI with out of annotations, right?) My question is why? I heard several issues: "It helps get rid ...
10
votes
1answer
2k views

Guice and properties files

Does anybody have an example of how to use Google Guice to inject properties from a .properties file. I was told Guice was able to validate that all needed properties exist when the injector starts ...
10
votes
1answer
344 views

Is there an equivalent in CDI(WELD) to build definitions (as done in Guice modules) and then create an Injector?

I like the way Guice makes it fairly straight forward to manually create your own modules each with their own bindings done in code. CDI on the other hand seems to rely more on magic rather than ...
9
votes
1answer
371 views

Is it possible to automatically clean up resources at the end of scope in Guice?

Let's say I have a Closeable object injected through Guice using request scope: @Provides @RequestScoped public MyCloseableResource providesMyCloseableResource(){ return new ...
9
votes
7answers
704 views

Dependency injection: Scoping by region (Guice, Spring, Whatever)

Here's a simplified version of my needs. I have a program where every B object has its own C and D object, injected through Guice. In addition an A object is injected into every C and D objects. ...
8
votes
2answers
241 views

Generics Hell: Can I construct a TypeLiteral<Set<T>> using generics?

The only way I was able to get the below generic method to work was to pass the seemingly redundant TypeLiteral<Set<T>> parameter. I believe it should be possible to construct this ...
8
votes
2answers
422 views

Injecting Collection of Classes with Guice

I've been struggling with this all afternoon, it doesn't even feel as though it should work - but on the off chance it does, here is my problem: I'm trying to inject things with Google Guice 2.0 and ...
8
votes
1answer
686 views

Inject Generic Implementation using Guice

I would like to be able to inject a generic implementation of a generic interface using Guice. public interface Repository<T> { void save(T item); T get(int id); } public ...
8
votes
6answers
2k views

dependency injection framework Guice vs Spring

I am planning to use dependency injection framework. what should I choose? Guice or Spring? I will use java configuration both ways. also my application is pure java j2se, not web/j2ee application and ...
8
votes
13answers
495 views

Is it wrong to make every concrete class to inherit from an interface?

This is in response to certain comments made by Zed Shaw in his blog a long while ago. The experts will then saunter off to implement their Flaming Tower of Babel without any comments, ...
8
votes
3answers
4k views

How to use Google Guice to create objects that require parameters?

Maybe I am just blind, but I do not see how to use Guice (just starting with it) to replace the new call in this method: public boolean myMethod(String anInputValue) { Processor proc = new ...
8
votes
2answers
1k views

Migrating application to use Guice - how to inject transactions into existing objects?

I'm new to Guice, and I'm working it in to an application with a large amount of legacy code. It has several classes that look like this: public final class DataAccessClass { private ...
8
votes
3answers
2k views

Inject an array of Objects in Guice

I would like to achieve something similar to the following in Guice: public MyClass { private final InjectedObject[] injectedObjects; @Inject public MyClass(InjectedObject[] ...
7
votes
2answers
552 views

How to @Inject into existing object hierarchy using Guice?

I have an existing object hierarchy where some objects have fields that need to be injected. Also there are some other objects that are constructed using Google Guice and need to be injected with ...
7
votes
1answer
232 views

IoC problem with multi binding

I'm Java beginner and IoC as well. How to do stuff: public class Foo{ //private Bar bar; //Bar is an interface private int var; public Foo(){ } public void setVar(int var){ this.var = var;} ...
7
votes
4answers
1k views

Guice call init method after instantinating an object

Is it possible to tell Guice to call some method (i.e. init()) after instantinating an object of given type? I look for functionality similar to @PostConstruct annotation in EJB 3.
6
votes
1answer
158 views

How can I use Scala's cake pattern to implement robot legs?

My development makes extensive use of the robot legs binding problem. I know how to solve it with PrivateModule in Guice, but it isn't clear how this would be done with Scala's cake pattern. Could ...
6
votes
3answers
362 views

What is the best way to implement a request/response protocol using akka and scala?

I've been studying about how I could develop a distributed architecture that implements the protocol request/response using the concept of concurrency through actors. I concluded that the best way to ...
6
votes
2answers
223 views

Looking for Guice-to-OSGi guiding principles, experience, tips, etc

Guice is a great framework to separate API from implementation and to start modularizing your applications. OSGi is a great framework to load versioned services in their own secured environment and to ...
6
votes
5answers
274 views

In a project that uses a DI framework, should you NEVER use the 'new' operator?

I'm trying to wrap my head around Dependency Injection. One of the things I'm confused about is whether all of your object instantiation needs to be controlled by the DI framework (Spring, Guice, ...
6
votes
9answers
372 views

What's the most minimal way to achieve Dependency Injection?

I've been reading about Spring and although it's claimed to be a less complex alternative to EJB, I'm having a hard time wrapping my head around it. Is there a more minimal way of achieving Dependency ...
6
votes
5answers
393 views

Is it a good or bad practice to call instance methods from a java constructor?

There are several different ways I can initialize complex objects (with injected dependencies and required set-up of injected members), are all seem reasonable, but have various advantages and ...
6
votes
1answer
331 views

Solutions to organize Guice binding configurations

It's apparently a bad idea to put all bindings in one module, so what do you think is the more elegant way? I think Bob's idea could be good start for this discussion: It's hard to come up with ...
6
votes
3answers
900 views

Can anyone provide a clear explanation of why Google Guice is useful?

I've read about Google Guice, and understand the general issues with other approaches to dependency injection, however I haven't yet seen an example of someone using Guice "in practice" where its ...
6
votes
3answers
1k views

Has anyone used ServiceLoader together with Guice?

I keep wanting to try this on a larger scale with our app + build system, but higher priorities keep pushing it to the back burner. It seems like a nice way to load Guice modules and avoids the common ...
5
votes
1answer
153 views

Java Generics Error: inconvertible types from command line compiler

I have some Guice binding code using generics that compiles and functions fine from Eclipse's compiler, but not from the Java (command-line) compiler. I upgraded to the latest (1.7.0_01) Java SDK but ...
5
votes
2answers
132 views

TypeLiteral injection with reflection

Context : java using guice (last version) Hi everybody, is it possible to inject some TypeLiteral with Guice by this way : public MyClass<?,?> getMyClass(Injector injector, Class<?> a, ...
5
votes
3answers
312 views

CXF and Google Guice using JAX-RS + JAX-WS

I would like to integrate CXF with Google Guice. I am already using Guice in my project and I want to avoid adding extra dependencies. CXF was my choice because one of the requirements is to be able ...
5
votes
1answer
406 views

Problem with generic return type in guice assisted inject factory

So far, I successfully used google guice 2. While migrating to guice 3.0, I had troubles with assisted inject factories. Assume the following code public interface Currency {} public class ...
5
votes
4answers
1k views

Example use-cases for using Dependency Injection with the Play Framework

I am a big fan of Dependency Injection and the Play Framework, but am having trouble seeing how the two could be exploited together. There are modules for Spring and Guice, but the way that Play ...

1 2 3 4 5 11