5

別の多くのドメインに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;

「1 対多」の属性値タイプは「永続エンティティ」であってはなりません

4

2 に答える 2

7

以下の注釈

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

する必要があります

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

ManyToOne アソシエーションであるため、このunique=true属性は意味がありません。明らかに、同じユーザーを参照する複数の DiasUsuarioTimeSheets が存在することになります。

同様に、次の注釈

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

に置き換える必要があります

@ManyToOne
@JoinColumn(name = "TIME_SHEET_ID_TIME_SHEET", nullable = false)
于 2013-05-11T20:02:32.587 に答える