TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Do you use Google Guice DI in 2017?

3 pointsby TXVover 8 years ago
I&#x27;ve recently come across Google Guice dependency injection. I&#x27;ve always used Spring, almost blindly, because of its great features for developing RESTful services.<p>I&#x27;ve read some materials about Guice, and it seems it was born around the release of Java 6 to address some then relevant problems in Java development.<p>Now the question, is the framework still alive? Have you ever used it? Would you recommend it to people who develop in Java 8 in 2017?

1 comment

niftichover 8 years ago
Guice is not dead, and its Github shows healthy activity. I&#x27;ve used it a few years back before JSR-330 existed, and your two choices of DI were Guice or Spring. At the time, we didn&#x27;t want to pull in Spring (crazy, right?) so we went with Guice.<p>The lead being Guice actually went on to author JSR-330.<p>Guice was always and remains a great choice if you need DI and don&#x27;t want to fall into the rabbithole that is Spring.