Tagged Questions

The tag has no wiki summary.

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 ...
3
votes
3answers
320 views

How do I manage dynamic dependencies with PicoContainer?

Say I have two classes A and B, with B depending on A. public class A {} public class B { public B(A a) {} } It's easy to resolve B in a single PicoContainer. final MutablePicoContainer ...
2
votes
3answers
61 views

Benefits of implementation driven & dependency injection vs cost of maintaining implementations

I am starting an application that I would like to build quickly and will be later developed by 20+ developers. Knowing what you know about DI in an environment with multiple developers, would you go ...
2
votes
1answer
100 views

Controlling the order of PicoContainer startup

I have been tasked with doing some refactoring work on how we start up applications. Basically we have a bunch of console apps which were depending on the GUI application startup code, causing bogus ...
2
votes
1answer
142 views

How to register decorated objects in Dependency Injection frameworks (PicoContainer)?

I want to wrap a number of classes implementing the Job interface with a JobEnabledDecorator object that determines whether or not it executes. I am having trouble figuring out how to configure this ...
2
votes
1answer
271 views

Converting from Waffle/Pico to Struts2/Guice

I've been tasked with converting an application which was developed by myself in the Waffle Framework using PicoContainer as a DI mechanism into our new "stack" which is to use Struts2 as a framework ...
0
votes
1answer
59 views

Problem auto wiring when facing object creation through methods

I am using PicoContainer to do the wiring of the classes of my application. As you can see below, everything goes perfect but in one place: CharArrayReader reader = new ...
0
votes
0answers
69 views

How to define analog of Spring prototype bean in Pico container

By default all beans in Pico container are singletons, even documentation says that Pico is good alternative of Singleton pattern, can I some how define "prototype" bean so pico will create new ...