这是使用Joda DateTime 2019-01-10T13:59:36.700+05:30
claimGroupingHistory.setCreatedAt(new DateTime());
但是在插入数据库时出现以下错误
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
我如何将Joda DateTime格式化为yyyy-MM-DD HH:MM:SS
这种格式以插入数据库
答案 0 :(得分:2)
可能您应该将其用于Hibernate 3:
@Type(type="org.joda.time.contrib.hibernate.PersistentDateTime")
在现场
对于Hibernate 4-5版,请添加以下内容:
@Type(type="org.jadira.usertype.dateandtime.joda.PersistentLocalDateTime")
http://jadira.sourceforge.net/
https://mvnrepository.com/artifact/joda-time/joda-time-hibernate