1. Mapping a localized string in Hibernate - any best practice? stackoverflow.comI'm writing an application where all String properties must be localized, i.e. they must store a different value for every available Locale. A quick solution would be to use a Map, which ... |
2. I18N data schema an "Join" mappig forum.hibernate.orgHello All I have tried searching for this topic without good results. I have a classical I18N data schema : table Item(id int) table Item_Locale(id int, locale char (10) , item_title text, item_description text) a record in Item-Locale table will look like this : id | locale | title | description 1 | en-us | "blah " | "blah blah" Off ... |