{{theTime}}

Search This Blog

Total Pageviews

Dependency Injection Framework : Google Guice

How to handle huge inter dependent classes with many factory classes?  Use Guice.

Guice is dependency injection framework used in google wave, adwords and other google products.

see the details here.
http://code.google.com/p/google-guice/wiki/Motivation?tm=6

No comments:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...