Licensing and trademark

There has been lots of turmoils last week on two not so related subjects. Let’s clarify them a bit.LGPL rights and dutyLot’s have been said about this license, and lot’s of people out there don’t understand the rights and duty of this license.GoalFrom the GNU LGPL Preambule:The licenses for most software are designed to … [...]

Google Guice: IoC revisited

Google has made public his IoC container. It’s all annotations based, no more strings, no more XML.Some key concepts:Avoid string based injection which are error prone and hard to refactor@Inject actually inject :-) @ImplementedBy(ServiceImpl.class). A service can have a default implementation, use by default when no wiring is explicit. The actual implementation is easily identified, … [...]