https://github.com/eruvanos/composit-id-jpa
How to map an internationalized text in db
https://github.com/eruvanos/composit-id-jpa
Last synced: 9 months ago
JSON representation
How to map an internationalized text in db
- Host: GitHub
- URL: https://github.com/eruvanos/composit-id-jpa
- Owner: eruvanos
- Archived: true
- Created: 2015-10-19T20:20:49.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-11-24T04:24:25.000Z (almost 3 years ago)
- Last Synced: 2025-01-30T21:22:34.703Z (10 months ago)
- Language: Java
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# composit-id-jpa
How to map an internationalized text in db
Tables:
- create table NeedText (id bigint generated by default as identity (start with 1), TEXT_ID bigint, primary key (id))
- create table TEXT (id bigint not null, LOCALE varchar(255) not null, text varchar(255), primary key (id, LOCALE))