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 I don't plan to use spring's rich capabilities. my main concern about guice is that it is much less popular and not in common use. I want a mature, documented and easy to use DI framework.
Can you tell me what is the preferred option from your experience?
|
|
||||
|
|
|
Guice provides injection only - it disappears once the object graph has been created. Any additional "features" that may be required are generally available via extensions or very easy to add, but you should always ask why. Just because it is there to use is not a reason to consider something. The benefit of Guice is that it is simple to use and that it is type safe. Type safety is paramount from my perspective as Spring has resulted in many headaches for myself. The choice in the end is undoubtedly yours, but I'd suggest you research both before you make a decision. |
|||||||||||||||||||||
|
|
+1 for Spring
|
|||||
|
|
Spring has a little bit of everything, which isn't necessarily a bad thing, but if you have to modify the default behavior of some of their classes it can be a pain to make things happen. That said, if you're willing to spend a couple hours looking at the source, you can make it happen. Spring is much more than just dependency injection. Guice does AOP as well as DI. I haven't used Guice, but I've been reading up on it, looking to use it in one of my projects. Spring trends towards setting everything as a getter/setter. In order to do some initialization after setting the properties of a spring class, you will need to either specify an init method on the bean itself or implement the initializing bean interface. Per my understanding of Guice, it prefers constructor arguments instead of setting getters and setters, so that isn't really needed. Spring can do constructor based creation if you wanted to go that route, however it is much less clear what is going on. When doing it via properties you have the property name as a reference. Guice does not use xml files for configuration. As with spring, I currently have a couple hundred lines of various configs in various xml files. I don't make heavy use of annotation for much of the code or autowiring, so my xml files are longer than they need to be. I'm not sure if Guice supports this or easily supports it, but with spring you can do session backed beans which does away with a lot of explicitly checking the session in a web application. There is also a way to register Spring beans inside of Guice, so they can somewhat work together. I'm not sure where this would be applicable/necessary. If you want more light weight/easier to get start I would guess Guice is quicker way to get started. Spring took a little getting used to, particular some of the caveats with their transactional AOP when first starting out. So to echo the first answer, it depends on how you plan on using it. Edit: Also, if you want something that will apply to both .Net and Java, there is a .Net version of Spring. When I used the .Net version, there weren't analogues for some of the WebMVC code, but for the most part, the concepts were the same. Since my company does both Java and .Net work, with the same developers, Spring + Hibernate works great for us. |
|||||||||
|
|
bloated unnecessary frameworks are the bane of Java. IMO this parallels the misuse of language features that led to the catastrophe that C++ turned into. I remember a quote from Linus Torvalds "if the choice of C were to do nothing but keep the C++ programmers out, that in itself would be a huge reason to use C". Guice, being designed by an expert with an eye to solving the problems that the Spring developers couldn't imagine is simply better designed. I personally believe that if you really need pluggability just make an interface and using something like a Service. That being said, if you are in a development team that is unable to imagine anything other than jamming the latest libraries into the app, try to push for Guice and save the company |
|||||||||
|
|
@huckleberryound - I completely agree. Guice is much more focused than Spring. You may also want to look at PicoContainer http://picocontainer.org - it's not as popular as Guice, but it is even smaller than Guice. I've used Guice and Pico successfully for many Java SE projects. |
|||
|
|
|
My reasons to use Spring over Guice are:
With Guice + JAX-RS you can go really far till you start needing Transactions and AspectJ support. Some people have tried to do the above bullet points with Guice + AspectJ through extensions but they are not really complete. Thus if you are connecting some RDBMs and you don't want to manage transactions and other boilerplate code I think Spring right now is your only option. If you like boiler plate code and proxy AOP then Guice is a better fit (some people hate AspectJ). |
||||
|
|
|
You might also want to take a look at simple alternatives that do just that like picocontainer. You don't mention the exact use case of the DI you'll make, so here a proposition that might fit or not your needs. For very simple solutions to the service loading (a.k.a plugins), you might also want to take a look at Java Simple Plugin Framework, Netbeans' Lookup and Java 1.6 ServiceLoader that gives very simple, but limited, dependency injection for a plugin architecture. |
|||
|
|
|
There is also a Spring comparison by the Guice Team: SpringComparison. Goal of the comparison (as stated on the page): Even so, the first question most people ask is, "how does Guice compare to Spring?" Rather than repeat the same spiel N times, we figured it best to answer the inevitable question once. |
|||
|
|