“一对多”属性值类型不应是“持久实体”

2024-05-17

我有 1 个用户访问许多其他域,并将其放入我的代码中:

用户等级

import org.hibernate.annotations.Cascade;
import org.hibernate.annotations.CascadeType;
import org.hibernate.annotations.Fetch;
import org.hibernate.annotations.FetchMode;
import org.hibernate.validator.constraints.Email;
import org.hibernate.validator.constraints.NotBlank;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;

@Entity
@Table(name = "USUARIO")
public class Usuario {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name = "ID_USUARIO",unique = true,nullable = false)
    private Long id;

    @NotBlank(message = "usuario.cadastro.nome.obrigatorio")
    @Column(name = "NOME", unique = true, nullable = false,length = 100)
    private String nome;

    @Email(message = "usuario.cadastro.email.invalido")
    @Column(name = "E_MAIL", unique = true, nullable = false,length = 100)
    private String email;

    @NotBlank(message = "usuario.cadastro.senha.obrigatoria")
    @Column(name = "SENHA", unique = true, nullable = false, length = 10)
    private String senha;

    @OneToMany(mappedBy = "usuario",fetch = FetchType.LAZY)
    @Cascade({CascadeType.ALL})
    @Fetch(value = FetchMode.SELECT)
    private Set<DiasUsuarioTimeSheet> diasUsuarioTimeSheetList;


    public Usuario() {
        diasUsuarioTimeSheetList = new LinkedHashSet<DiasUsuarioTimeSheet>();
    }

另一类:

import org.hibernate.annotations.Cascade;
import org.hibernate.annotations.CascadeType;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;

@Entity
@Table(name = "DIAS_USUARIO_TIMESHEET")
public class DiasUsuarioTimeSheet {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name = "ID_DIAS_USUARIO_TIMESHEET",unique = true,nullable = false)
    private Long id;

    @Column(name = "DIAS_ID_DIAS", unique = true, nullable = false)
    private Dias dia;

    @ManyToOne
    @Cascade({CascadeType.MERGE, CascadeType.SAVE_UPDATE})
    @Column(name = "USUARIO_ID_USUARIO", unique = true, nullable = false)
    private Usuario usuario;

    @Column(name = "TIME_SHEET_ID_TIME_SHEET", unique = true, nullable = false)
    private TimeSheet timeSheet;

    public DiasUsuarioTimeSheet() {
    }

我有错误:

@OneToMany(mappedBy = "usuario",fetch = FetchType.LAZY)
@Cascade({CascadeType.ALL})
@Fetch(value = FetchMode.SELECT)
private Set<DiasUsuarioTimeSheet> diasUsuarioTimeSheetList;

“一对多”属性值类型不应是“持久实体”


以下注释

@Column(name = "USUARIO_ID_USUARIO", unique = true, nullable = false)

应该

@JoinColumn(name = "USUARIO_ID_USUARIO", nullable = false)

the unique=true属性没有意义,因为它是一个 ManyToOne 关联:显然,您将有多个引用同一用户的 DiasUsuarioTimeSheets。

同样,下面的注释

@Column(name = "TIME_SHEET_ID_TIME_SHEET", unique = true, nullable = false)

必须替换为

@ManyToOne
@JoinColumn(name = "TIME_SHEET_ID_TIME_SHEET", nullable = false)
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

“一对多”属性值类型不应是“持久实体” 的相关文章

随机推荐