不確定如何提出問題,但我使用Hibernate來存儲我的Player
類的某些變量。但是,在這個類中,我們還有一個Appearance
的實例,我也想保存變量。休眠保存(內部?)類變量
這是我的hibernate.cfg.xml (pastebin),這裏是我的Player.hbm.xml (pastebin)。
只是爲了不遺漏任何一個方面的SQL (pastebin)設立我的數據庫( 「PrimaryKey的」 自動遞增)
(PrimaryKey的一個儲存在Player.java)
@Id
@GeneratedValue
private Long primaryKey;
外觀實例:
private final Appearance appearance = new Appearance();
內出現的變量,我試圖挽救:
private int[] styles = new int[]{0, 10, 18, 26, 33, 36, 42};
private int[] colors = new int[]{2, 5, 8, 11, 14, 0, 0, 0, 0, 0};
感謝高級!
我認爲你需要將你的'Appearance'類設置爲一個實體。 –