Jesper Boeg on Priming Kanban
In this interview, Jesper Boeg, author of the new InfoQ book – Priming Kanban, discusses the keys to using Kanban effectively, and how to get started if you are currently using other approaches.
The content has been bookmarked!
There was an error bookmarking this content! Please retry.
Posted by Ryan Slobojan on Jun 03, 2009
Guice, a lightweight Java dependency injection framework created by Google, recently released version 2.0. InfoQ spoke with Google Developer Team member Jesse Wilson to learn more about this release and what capabilities it adds to Guice.
Wilson described Guice's philosophy as "writing code with purpose", with the idea that time spent writing the application framework is not time spent writing business functionality. The intent of Guice is to be minimally intrusive, and it uses an annotation-based approach to dependency injection along with Java-based configuration. Once it creates the initial object graph and injects all of the dependencies, it lets the business logic take over and does not need to be thought about any more. In comparison with frameworks such as Spring and Webworx which are full-stack enterprise application development frameworks, Guice is a dependency injection kernel which has integrations into a number of areas.
Major new features included in this release are:
A complete feature list is available on the Google Guice wiki, as well as a multi-part detailed walkthrough of the new features in a series of blog articles.
Wilson offered an example of some of the simplification which has occurred with provider methods:
in Guice 1.0, configuring custom business logic to provide an instance was pretty gross:bind(Integer.class) .annotatedWith(Names.named("lucky")) .toProvider(new ProviderProvider methods really tidy this up:() {
@Inject @Named("unlucky") int unlucky;
public Integer get() {
return unlucky * 7;
}
}).in(Singleton.class);@Provides @Named("lucky") @Singleton int provideLucky(@Named("unlucky") int unlucky) { return unlucky * 7; }
Wilson also discussed the utilization and community aspects of Guice, saying that Guice is used heavily inside Google on many projects such as AdWords, Blogger and Gmail. There are also other big users of Guice such as LimeWire, and a list of third-party modules for Guice is also available which includes integrations for Java EE, OSGi, JBoss, Hibernate, JUnit and JSF. Wilson gave a lot of praise to the energy and enthusiasm of the Guice community, and also pointed out that the community has created C++, C#, GWT and PHP ports of Guice. When asked about future plans, Wilson indicated that the Guice team would be contributing resources to the JSR 330 Dependency Injection proposal. He also mentioned that several features which did not make it into the 2.0 release, such as a visualization graph for injectors, will be worked upon and added in future Guice releases.
Using Drools? See what you're missing! Get the Power of Drools with the Assurance of Red Hat
Improve Java Garbage Collection, Runtime Execution, and JVM visibility with Zing
Monitor your Production Java App - includes JMX! Low Overhead - Free download
18 agile and lean practices for effective software development governance
In this interview, Jesper Boeg, author of the new InfoQ book – Priming Kanban, discusses the keys to using Kanban effectively, and how to get started if you are currently using other approaches.
John Hugg discusses high volume transaction processing applications with high and low frequency profiles, and how VoltDB can be used for that purpose.
Kevlin Henney examines code samples to see what can be learned from them starting from the premise that one won’t write great code unless he knows how to read it.
Jason Ayers share the observations he made watching a team of developers collaborating in real time on the same code base, pushing XP, pair programming and continuous integration to their extremes.
Michael Snoyman presents Yesod, a web framework written in Haskell and containing a web server, templating, ORM, libraries (templating, gravatar, etc.).
Richard Kreuter and Kyle Banker on how to avoid classical RDBMS transactional systems by using compensation mechanisms, transactional messaging or transactional procedures.
Attila Szegedi talks about performance tuning Java and Scala programs at Twitter: how to approach GC problems, the importance of asynchronous I/O, when to use MySQL/Cassandra/Redis, and much more.
One category of risk that project teams need to ensure they address is business value failure – delivering a product that fails to provide value for the business investor.
No comments
Watch Thread Reply