こんにちは、私はSpringが初めてで、次の依存関係を使用してアプリケーションを構築しています
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time-hibernate</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.1.7.Final</version>
</dependency>
<spring.framework.version>3.1.2.RELEASE</spring.framework.version>
クラス org.joda.time.contrib.hibernate.PersistentDateTime のデータ型が DateTime のフィールドを持つオブジェクトを永続化できません。
@Column(name = "LAST_MODIFIED_DATE")
@Type(type = "org.joda.time.contrib.hibernate.PersistentDateTime")
public DateTime getLastModifiedDate() {
return lastModifiedDate;
}
joda DateTime の使用方法を提案できる人はいますか。