坚持与EJB的多对多关系

时间:2013-08-08 06:04:21

标签: java jpa ejb

我正在使用JPA(hibernate),EJB和CDI bean(JSF)。我有两个表:技术(实体是Technology.class)和组件(实体是Component.class)与多对多关系。 实体代码:

public class Technology implements Serializable{
...
@Lob
@Column(nullable=false)
private String title;
...
@ManyToMany(mappedBy="technologies")
private List<Component> components;
..
}

public class Component implements Serializable {
...
@ManyToMany
    @JoinTable(
        name="technology_has_component"
        , joinColumns={
            @JoinColumn(name="component_title", nullable=false)
            }
        , inverseJoinColumns={
            @JoinColumn(name="technology_tId", nullable=false)
            }
        )
    private List<Technology> technologies;
...
}

EJB中的代码:

@Stateless
@LocalBean
public void addTech(Technology tech) throws Exception {     
    em.persist(tech);
}

我的JSF页面使用带有属性和方法的CDI bean:

    @Named(value = "adminActionTech")
    @SessionScoped
    public class AdminActionTech implements Serializable{
    ...

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String addTech() {
        Technology tech = new Technology();
        tech.setTitle(title);
            ...

        tech.setComponents(getListAvaiComps());
        try {
             techService.addTech(tech); 
        } catch (Exception e) {
             e.printStackTrace();
        }
    }
    private List<Component> getListAvaiComps() {
          List<Component> listNewComponent = new ArrayList<Component>();
          Component findComp = compService.findComp(component.getTitle()); // findComp() is a method in a EJB
          listNewComponent.add(findComp);
          return listNewComponent;
    }

当我添加带有title,....的新技术时,列出组件。一切都很好,除了没有添加列表组件。我检查了技术表,创建了一条新记录,但是tech_has_component表没有添加更多记录。 我调试,并确保getListAvailComps方法不为null。 你能告诉我如何解决。感谢

2 个答案:

答案 0 :(得分:0)

如果您希望新容器的容器保持不变,则需要将关系@CascadeType设置为PERSIST之类的内容。

答案 1 :(得分:0)

这适用于我的几个实体

在Technology.java中

@ManyToMany
@JoinTable(name = "technologiescomponents")
private Set<Component> components;
Component.java中的

@ManyToMany(mappedBy = "components")
private Set<Technology> technologys;

和数据库

CREATE TABLE technologiescomponents
(
  component_id bigint NOT NULL,
  product_id bigint NOT NULL
);