这是背景:我有一个带注释的@Embeddable
Java 类,它有一个GregorianCalendar
字段。我正在尝试使用 hibernate3:hbm2ddl 通过 hibernate3 Maven 插件生成模式,以便我可以持久保存嵌入它的另一个对象,但它遇到了关于使用@Temporal
.
这是可嵌入类:
@Embeddable
public class OperationalStatus implements Serializable {
.
.
.
/**
* Recorded date/time that the status value is valid
*/
private GregorianCalendar time;
/**
* No-argument constructor.
*/
public OperationalStatus() {}
.
.
.
/**
* @return the time
*/
@Temporal(TemporalType.TIMESTAMP)
public GregorianCalendar getTime() {
return time;
}
/**
* @param time the time to set
*/
public void setTime(GregorianCalendar time) {
this.time = time;
}
}
这是错误读数:
[错误] 无法在项目 STRIPES_V2 上执行目标 org.codehaus.mojo:hibernate3-maven-plugin:2.2:hbm 2ddl (default-cli):执行目标 org.code haus.mojo:hibernate3-maven-plugin 的 default-cli :2.2:hbm2ddl 失败:@Temporal 只能在 java.util.Date 或 java.util.Calendar 属性上设置:stripes.datamodel。util.OperationalStatus.time
以下是 pom 的一些摘录:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<components>
<component>
<name>hbm2ddl</name>
<implementation>annotationconfiguration</implementation>
</component>
</components>
<componentProperties>
<drop>false</drop>
<configurationfile>src/main/resources/hibernate.cfg.xml</configurationfile>
<outputfilename>schema.sql</outputfilename>
</componentProperties>
</configuration>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.2-1000.jdbc4</version>
</dependency>
</dependencies>
</plugin>
.
.
.
<dependency>
<groupId>org.hibernate</groupId>
<version>4.1.7.Final</version>
<artifactId>hibernate-core</artifactId>
</dependency>
我错过了什么?GregorianCalendar 是 Calendar 的具体扩展,那么有什么问题呢?