Pages

Generating sql files in Maven using hibernate tools

Hibernate’s SessionFactory has some very powerful functions available like generating your tables from your hbm files using the hbm2ddl.auto property. This is very handy for laptop testing where you can let hibernate generate your complete scheme on the fly.
Although useful on your laptop, it is probably not want you want to do in a real [...]

Maven and Jetty: A Perfect fit

The jetty-maven-plugin is a real life saver when it comes to developing web applications. In the past I had such horrible experiences with the eclipse WTP plugin that I banned it from my toolset forever.
For a year now I use the jetty-maven-plugin and it makes developing so much easier. In this blog I will give [...]