OneToMany关系中的休眠/反射问题:IllegalArgumentException



当我试图在n侧保存一个对象,而该对象设置在1侧时,我收到以下错误:

Dec 07, 2018 10:37:07 AM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.orm.jpa.JpaSystemException: Error accessing field [public java.lang.String eu.jaas.document.Document.id] by reflection for persistent property [eu.jaas.document.Document#id] : 17842965-4ea8-41b6-9653-110965f6db13; nested exception is org.hibernate.property.access.spi.PropertyAccessException: Error accessing field [public java.lang.String org.myorg.document.Document.id] by reflection for persistent property [org.myorg.document.Document#id] : doc123] with root cause
java.lang.IllegalArgumentException: Can not set java.lang.String field eu.jaas.document.Document.id to java.lang.String
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:167)
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:171)

单侧Java对象定义如下:

@Entity
public class LawCase {
..
@Id
public String id;
@OneToMany(mappedBy = "lawcase")
public @Setter Set<Document> documents = new HashSet<>();
..
}

n面:

@Entity
public class Document {
..
@Id
public String id;
@ManyToOne
@JoinColumn(name="lawcase")
public LawCase lawcase;
..
}

id是在对象初始化期间由应用程序本身生成的,因此在我尝试保存对象时,LawCase和Document对象都有一个有效的id(UUID(。

我使用springBoot.version 2.1.1.RELASE,并尝试使用Java8和Java11。对我来说,它看起来很像一个常见的hibernate用例,唯一的"异常"可能是我在数据类上也有lombok注释。我确信我忽略了一些非常简单的问题,但在过去的几天里我是盲目的。

默认ID GenerationType为AUTO。但问题是这个GenerationType不支持字符串。此GenerationType支持long、int和short数据类型。

如果您没有设置@GeneratedValue注释,则默认值为generator,这意味着标识符的值必须由应用程序设置。

如果可以使用自定义GenerationType解决此错误。你可以在这里参考

相关内容

  • 没有找到相关文章

最新更新