(实体类) 在此处输入图像描述
(错误消息) 在此处输入映像
依赖关系在此处输入图像描述
depentencyanother @entity注释很好。但是只有@ID注释不起作用...
(依赖关系)
(Entity class) enter image description here
(Error message) enter image description here
dependencyenter image description here
dependencyAnother @Entity annotation is fine. but only @id annotation is not working...
(dependency)
从 @id 更改为 @Id,区分大小写。
@id
@Id
Change from @id to @Id, case matters.
错误消息是不言自明的。 Java 是区分大小写的编程语言。这里的 id 和 Id 不一样。您必须使用@Id。
id
Id
The error mesage is self-explaining. Java is case-sensitive programming language. id and Id are not the same here. You have to use @Id.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
从
@id
更改为@Id
,区分大小写。Change from
@id
to@Id
, case matters.错误消息是不言自明的。 Java 是区分大小写的编程语言。这里的
id
和Id
不一样。您必须使用@Id
。The error mesage is self-explaining. Java is case-sensitive programming language.
id
andId
are not the same here. You have to use@Id
.