My thoughts on various subjects. I particularly love hacking my work. Either by methodology or by improving my tools. Check out this list of tags / subjects.

Recent Posts

Google Guice: IoC revisited

1 minute read

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 e...

Hibernate + Seam team meetup in San Fransisco

less than 1 minute read

This is a pretty rare event, (almost) all the Hibernate + Seam team will be together in San Fransisco end of this week.We organize a meetup on Friday (March ...

SVN: false promises

1 minute read

I've had to do a massive project refactoring. To be more specific, I had to split Hibernate Annotations in several pieces and make Hibernate Validator and Hi...

Groovy Annotations

less than 1 minute read

I have been hammering (nicely) Guillaume for a long time now to get Annotations support in Groovy.Thanks to Alexandru Popescu, this is now an official work i...

To copy a file in …

less than 1 minute read

... Javaprivate static void copyFile(File srcFile, File destFile) throws IOException { FileInputStream is = null; FileOutputStream os = null; tr...