通过Hibernate将DateTime
传递给我的插入查询时,我遇到了SQL异常。
请在试图传递DateTime
的地方找到我的Java代码:
claimGroupingHistory.setCreatedAt(new DateTime());
claimGroupMappingRepository.insertClaimGroupingHistory(claimGroupingHistory.getDealerCode(),
claimGroupingHistory.getCreatedAt(),
claimGroupingHistory.getCreatedBy());
我在系统退出DateTime
时得到2019-01-10T13:59:36.700+05:30
格式。
请找到我的插入查询
请找出我的例外情况
2019-01-10 13:59:36,754 [http-9292-1] ERROR org.hibernate.engine.jdbc.spi.SqlExceptionHelper: 146 - Data truncation: Incorrect datetime value: '\xAC\xED\x00\x05sr\x00\x16org.joda.time.DateTime\xB8<xdj[\xDD\xF9\x02\x00\x00xr\x00\x1Forg.joda.time.base.BaseDateTime\xFF\xFF\x' for column 'created_at' at row 1
2019-01-10 13:59:36,774 [http-9292-1] ERROR com.cat.pscs.api.controller.BaseController: 57 - Data Integrity Violation Exception : org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; nested exception is org.hibernate.exception.DataException: could not execute statement
答案 0 :(得分:0)
您应在实体类中使用以下注释,以保留joda DateTime:
@Type(type = "org.jadira.usertype.dateandtime.joda.PersistentDateTime")
private DateTime createdAt;
还要确保您的类路径中有jadira-usertype-core.jar:
<dependency>
<groupId>org.jadira.usertype</groupId>
<artifactId>usertype.core</artifactId>
<version>3.1.0.CR1</version>
</dependency>
答案 1 :(得分:0)
要帮助hibernate
将DateTime
保留到数据库中,您应该在项目中使用joda-time-hibernate
而不是joda-time
。
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time-hibernate</artifactId>
<version>1.4</version>
</dependency>
修改实体:
@Column
@Type(type="org.joda.time.contrib.hibernate.PersistentDateTime")
private DateTime createdAt;
请注意,1.4版适用于Hibernate 3.6。因此,当您使用更高级别的休眠模式时,请更新joda-time-hibernate
。
替代项:
在pom.xml
中声明一个额外的依赖项,它可以支持joda-time
的持久性。
<dependency>
<groupId>org.jadira.usertype</groupId>
<artifactId>usertype.extended</artifactId>
<version>5.0.0.GA</version>
</dependency>
修改实体:
@Column
@Type(type="org.jadira.usertype.dateandtime.joda.PersistentLocalDate")
private DateTime createdAt;