vote up 8 vote down star
2

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 issues with it?

flag

5 Answers

vote up 12 vote down check

Confirmed, Google uses Guice for many internal Java apps. You can rely on it!

link|flag
vote up 1 vote down

I've used Google Guice in a production application and love it. I have had some issues with the performance of the application, but I believe that's more of my issue than any piece of the technology stack I'm using. Currently, I'm using Guice with JSF RI, and there have been some difficult times in getting it all set up properly. There really wasn't a good resource for getting Guice to work with JSF, especially the RI.

link|flag
vote up 5 vote down

Guice is a fantastic framework. I use it extensively in a huge (> million lines) application and it is great for testing. Google has done a lot to make it production-ready and it definitely is. I can't say much about Spring because I've never used it, but I highly recommend Guice.

link|flag
vote up -6 vote down

It seems that Spring is preferred.

Spring is big and it gives you integration with a lot of libraries in all the architecture levels. If you are taking risk deciding to use Guice, I recommend you to use Spring.

link|flag
"seems that Spring is preferred" is not a fact but your own opinion presented as a factual statement. – Trevor Boyd Smith May 18 at 15:17
What's the problem if it is my opinion? Almost every post in this site is more an opinion than a fact. And my opinion is based on facts too: ohloh.net/p/google-guice ohloh.net/p/spring Please, do some research before write your own opinion =). – Jonathan Barbero May 21 at 12:50
You have made a very broad statement leaving out a lot of proof. Preferred by whom and why ? Spring DI is just a fraction of the overall Spring platform. It would be unfair to bring in all the other extras in Spring when only IOC is being discussed. There is nothing stopping one from using Guice and the other spring stuff. That said i dont have a preference. – mP Jul 19 at 3:18
Why is it a big risk? It's all pretty straightforward Java and the source is there if you need it. – chillenious Sep 8 at 5:16
2  
Google risked using Guice, and it's worked out quite well for us. – Jesse Wilson Sep 23 at 3:07
vote up 6 vote down

I've heard that google uses guice in production AND they have been using it in production for more than 2 years now.

link|flag
1  
Almost 3 now -- I can't believe it. We've used it in production since before the beginning; it grew up in production! – Kevin Bourrillion Nov 6 at 4:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.