|
From: jbetancourt <jbe...@co...> - 2007-03-10 13:46:53
|
Saw news on InfoQ regarding interesting project, Guice. = http://www.infoq.com/news/2007/03/guice Some quotes that I found interesting, so far: >From http://code.google.com/p/google-guice/wiki/SpringComparison "Guice also has no notion of "Java beans" as the Java 5 language = features make them obsolete for our purposes." "Finally, Guice's unique design enables unprecedented performance, some = 100X faster than Spring for dependency injection. Guice builds method = interception in at the core instead of as an afterthought. This hides = the mechanics of AOP from the user reducing the chances of "gotchas" and = leveling the learning curve, and minimizes performance overhead." And from: http://code.google.com/p/google-guice/ "Guice injects constructors, fields and methods (any methods with any = number of arguments, not just setters)" micro benchmark: = http://google-guice.googlecode.com/svn/trunk/test/com/google/inject/Perfo= rmanceComparison.java ---- Josef |