- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你能帮我解决一些问题吗?我有两个实体项目和页面通过“一对多”连接:
项目模型(也与用户模型相关)
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@JsonProperty
private Integer id;
@ManyToOne(optional = false, fetch = FetchType.EAGER)
@JoinColumn(name = "username", referencedColumnName = "username", foreignKey = @ForeignKey(ConstraintMode.NO_CONSTRAINT))
private User user;
@Column(name="projectName", unique = true, nullable = false)
@JsonProperty
private String projectName;
@Column(name="style")
@JsonProperty
private String style;
@Column(name="menu")
@JsonProperty
private String menu;
@JsonProperty
@Fetch(value = FetchMode.SELECT)
@OneToMany(orphanRemoval=true, mappedBy = "project", cascade = {CascadeType.ALL}, fetch = FetchType.EAGER)
private Set<Page> pages;
//getters and setters
页面模型:
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@JsonProperty
private Integer id;
@Column(name="content")
@JsonProperty
private String content;
@Column(name="pageName", nullable = false)
@JsonProperty
private String pageName;
@ManyToOne(optional = false)
@JoinColumn(name = "project", referencedColumnName = "projectName", foreignKey = @ForeignKey(ConstraintMode.NO_CONSTRAINT))
private Project project;
//getters and setters
现在我想做这样的事情:
@Override
public void updatePages(Set<Page> pages, Integer projectId) {
Project project = entityManager.find(Project.class, projectId);
project.setPages(pages);
}
但是 Hibernate 查询没有结果和错误。
Hibernate:
select
project0_.id as id1_1_0_,
project0_.menu as menu2_1_0_,
project0_.projectName as projectN3_1_0_,
project0_.style as style4_1_0_,
project0_.username as username5_1_0_,
user1_.id as id1_4_1_,
user1_.email as email2_4_1_,
user1_.enabled as enabled3_4_1_,
user1_.password as password4_4_1_,
user1_.username as username5_4_1_,
userroles2_.username as username3_4_2_,
userroles2_.id as id1_2_2_,
userroles2_.id as id1_2_3_,
userroles2_.role as role2_2_3_,
userroles2_.username as username3_2_3_
from
projects project0_
inner join
users user1_
on project0_.username=user1_.username
left outer join
roles userroles2_
on user1_.username=userroles2_.username
where
project0_.id=?
Hibernate:
/* load project.model.User */ select
user0_.id as id1_4_2_,
user0_.email as email2_4_2_,
user0_.enabled as enabled3_4_2_,
user0_.password as password4_4_2_,
user0_.username as username5_4_2_,
projects1_.username as username5_4_4_,
projects1_.id as id1_1_4_,
projects1_.id as id1_1_0_,
projects1_.menu as menu2_1_0_,
projects1_.projectName as projectN3_1_0_,
projects1_.style as style4_1_0_,
projects1_.username as username5_1_0_,
userroles2_.username as username3_4_5_,
userroles2_.id as id1_2_5_,
userroles2_.id as id1_2_1_,
userroles2_.role as role2_2_1_,
userroles2_.username as username3_2_1_
from
users user0_
left outer join
projects projects1_
on user0_.username=projects1_.username
left outer join
roles userroles2_
on user0_.username=userroles2_.username
where
user0_.username=?
Hibernate:
select
pages0_.project as project4_1_0_,
pages0_.id as id1_0_0_,
pages0_.id as id1_0_1_,
pages0_.content as content2_0_1_,
pages0_.pageName as pageName3_0_1_,
pages0_.project as project4_0_1_
from
pages pages0_
where
pages0_.project=?
我想更新项目中的页面。最好的方法是什么?
UPD
Project project = entityManager.find(Project.class, projectId);
entityManager.createQuery("DELETE FROM Page p WHERE p.project = :project")
.setParameter("project",project)
.executeUpdate();
最佳答案
关联 Project-Pages 的所有者端位于 Page
实体上,在 hibernate 状态下(因为它解析双向一对多的方式),这意味着您必须设置 Page.project
对于您想要与 Project
链接的每个 Page
。如果您只将页面添加到项目的页面集合中,它将不起作用。
这样做,
@Override
public void updatePages(Set<Page> pages, Integer projectId) {
Project project = entityManager.find(Project.class, projectId);
for (Page p: pages) {
p.setProject (project);
//the pages are new? then also do em.persist(p)
}
}
根据您的实体模型,您现在看到的 select 语句需要检索项目并在调用 entityManager.find
方法时生成。
关于java - Hibernate jpa oneToMany : how to add to "one" list of many children,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31773936/
我有如下三个实体相关:A(一对多) B(一对多) C我如何从 C 中获取基于 A->id 的所有记录?????? 最佳答案 类似于: $entityManager = $this->getDoctri
代码之间有什么区别? @LazyCollection(LazyCollectionOption.FALSE) @OneToMany(mappedBy = "siteesTypeSite", casca
public class ClientEntity { @Id @Column(name="id", nullable = false, unique = true) @Gen
现在,我明白这是不可能的,但我无法想象这是一个从未遇到过的问题。 我在不同的 PU 中有两个实体。我想从一个外键到另一个。我想知道谁已经遇到过这个问题,他们是否找到了一个好的解决方案? 最佳答案 Ec
我有两个与 OneToMany - ManyToOne 映射关联的类。当我选择父实体时,它也会选择子实体,但是分配给它的所有子实例都是每个父实例,而不是分配相关实例。 采购入口.java @Entit
我在 OneToMany 字段的持久性方面遇到了麻烦。这是两个简化的类 我是用来做测试的。 public class User implements Serializable { ... privat
我有一个持久化实体,它有一个 @OneToMany另一个实体的列表,我需要列表顺序才能由用户编辑,这非常有效。我可以完全重新排序内存中的 java 列表,当我 save() 对象时,链接表中的链接顺序
我是 Hibernate 的新手,正在尝试一些应该很容易的事情,但我无法让它工作。 有两个表,一个人和一个地址。一个人可以有一个或多个地址,即:一个 OneToMany 映射。当我尝试将相同的地址添加
我有双向、一对多和多对一的关系。说,一个公司有很多人,一个人有一个公司,所以,在公司中, @OneToMany(mappedBy = "company", fetch = FetchType.EAGE
在JPA中设置一对多关系时如何设置外键的列名? 我想将“items_id”的名称更改为“item_id” @OneToMany private List items; 我尝试了以下注释但没有成功: @
我有2张 table : 第一个是“人”: person_id, 人名 第二个是“PersonsGraphs”: person_id1, person_id2, 关系类型 我正在寻找一种建立“家谱”的
请帮我解决这个问题。我尝试了很多组合,但似乎没有任何效果。我正在尝试使用注释实现 hibernate 映射,但在保存我的父对象及其子对象期间,我注意到正在调用更新语句而不是插入语句。 我有两个彼此具有
我是 JPA 新手。假设我有这两个实体: //Imports @Entity @Table(name="article", schema = "sch_client") public class Ar
我有使用 Hibernate 归档 @ManyToOne 关系的代码。我有两个类 Package 和 Address。在 Address 中,我希望有唯一的条目,其中每个地址都与其他地址有所不同。然后
在订单表中插入时遇到此错误 org.springframework.dao.InvalidDataAccessApiUsageException: detached entity passed to
我是 Hibernate 新手,我正在尝试在 Person 和 Vehicle 类之间建立 OneToMany/ManyToOne 双向关系。在我的示例中,一个人可以拥有许多车辆,而一辆车辆只属于一个
我们是 JPA 新手,尝试建立一个非常简单的一对多关系,其中名为 Message 的 pojo 可以具有由名为 GROUP_ASSOC 的联接表定义的整数组 id 列表。 。这是 DDL: CREAT
我在使用 JPA 时遇到了一些小问题。我有三个表(OTHER 表与此处无关,但我添加它只是为了解释为什么存在没有 PK 的表 USERS): ADDRESS id (PK) user_id (FK)
请帮我解决这个问题。我尝试了很多组合,但似乎没有任何效果。我正在尝试使用注释实现 hibernate 映射,但在保存我的父对象及其子对象期间,我注意到正在调用更新语句而不是插入语句。 我有两个彼此具有
我的 Task 实体表示为: @Entity @Getter @NoArgsConstructor public class Task { @Id @GeneratedValue(st
我是一名优秀的程序员,十分优秀!