Dependency Injection

all tags

Pages tagged with "Dependency Injection":

Google Guice and Scope Mixing

11 Dec 2012 , tagged: Guice, Dependency Injection, Java

I’ve been working on a small Java application I wrote a few years ago for some bug fixes and in the process of making it better, I introduced Google Guice, my favourite dependency injection framework. On of the great features of Guice is that it supports different scopes for injection. Per default, Guice will return a new object for every request. But sometimes you want to objects to be created a bit less liberally, for example, you want a certain object to be created only once.

read more →