1
我有一個數據字典表是這樣的:如何在使用休眠時設計數據字典表?
tbl_data_dictionary
filed
type code code_name
rows
sex 1 boy
sex 2 girl
country 1 American
country 2 China
我有一個數據表:
field
name sex_code country_code
rows
vivic 1 2
如何我使用Hibernate映射代碼,代碼名稱? one_to_many映射設置似乎不符合我的需要。將tbl_data_dictionary分隔爲tbl_sex和tbl_country的唯一方法是?但是,如果我有很多類型的字典,並且在一種類型中沒有多少行,我覺得這是浪費。可以像這樣休眠映射:sex_code=code and type="sex"
?