guice « Bean « Spring Q&A





1. Managing complexity in a dependency-injected app with a large number of beans    stackoverflow.com

I'm working on an Spring application which has a large number of beans - in the hundreds - and it's getting quite cumbersome to use and document. I'm interested in any experience ...

2. Guice Custom Scopes and Spring managed beans    stackoverflow.com

(x-posted to guice mailing list) I'm trialling Guice on a new library that will live in an existing application. All our apps right now are spring apps and we have some common ...

3. Properties framework in java apps    stackoverflow.com

I have been using spring for a while as my IOC. It has also a very nice way of injecting properties in your beans. Now I am participating in a ...

4. How to create annotation-configured beans with an existing instance of @Configuration?    stackoverflow.com

Assume we have a simple @Configuration:

@Configuration
public class FooBarConfiguration {

    @Bean
    public Foo createFoo() {
        return new FooImpl();
  ...