Spring 3 + JPA 2.0 + Hibernate 3.5.1-Final + Wicket 1.4.9 + Maven 2
This is just a quick note for someone wants to use Spring 3, Jpa 2, Hibernate 3 and Wicket within Maven 2 project.
Effective JPA with Enumeration
How to persist an enumeration effectively? Here is my experience.
I will use Wordpress for example. We all know that every post in Wordpress blog system has a status with possible values: draft, pending-review, published…
Install Thrift on Ubuntu
A quick note for installing Thrift on Ubuntu.
Fluent Interface
I’ve played with my own framework recently, I found a new term, called “Fluent Interface”. There is a great article of Martin Fowler about this term, you can read it if you have not heard about it yet.
The idea of “Fluent Interface” is instead of returning void in setter methods of an object, returning an object to promote object chaining.