hibernate tip: smart id generator
A small tip to generate more meaningful Id. Instead of 32 for OrderID use O000000032.

Use smart and meaningful ids
Simple implementations:
- SmartIdTableGenerator
- SmartIdSequenceGenerator
Posts Tagged ‘ hibernate ’
A small tip to generate more meaningful Id. Instead of 32 for OrderID use O000000032.

Use smart and meaningful ids
Simple implementations:
It is very common way of usage that when ever you need some new attribute for your model objects/table you add a new column to the related database table. After several requirements you will notice: Read more
It has been more than a week since I downloaded Grails, Although my first Grails impressions are not so well, I am playing with Grails with lots of curiosity and joy, Read more
Since SpringSource acquires the Grails I was willing to test this framework and make a dummy project but first I should read some books:) Read more
Image via Wikipedia
More java framework and APIs that I have been using.
you can find the first part this article here: java runtime stack Read more
Image by Neil T via Flickr
I have been developing java application for more then 6 years. Most of these years I have used and evaluated open source projects. Here I’ll try to explain my open source java stack. Read more
Hi again, a few hours ago I have read a question about ORM mapping for java . He wonders why and when this technology is chosen.
Disclaimer: I am omitting the case, when your database is just a storage for a CRUD apps. I am talking about complex applications, when stored procedures are used very extensively, like Oracle’s PL/SQL.