是否有可能宣佈一種JPA - 擴展Java字符串,日期
@????? // Embeddable?
class MyDate extends java.util.Date implements Serializable{
//.. lots of logic, but no new fields
}
,包括它在映射
class Person {
@????
MyDate birthdate;
}
我試圖嵌入/ Embedded的,但我得到這個錯誤信息
[junit] 7109 venses WARN [main] openjpa.MetaData - "birhtdate" declares a null indicator column ""birthdate_null"" whose JDBC type is not compatible with the expected type "integer".
我不認爲你的問題的答案將解決你的問題。 – Bohemian 2012-08-17 13:11:58
我真的不明白這個問題。什麼「@ ????」意思? – 2012-08-17 13:16:24
看起來像一個半指定的佔位符給我的註釋。 – duffymo 2012-08-17 13:23:41