0

ここでは、多対 1 の双方向関係で定義された JPA エンティティが必要です。

@Entity
public class Department implements Serializable {
    private static final long serialVersionUID = 1L;

    @Id
    @SequenceGenerator(name="DEPARTAMENTO_ID_GENERATOR",sequenceName="DEPARTAMENTO_SEQ")
    @GeneratedValue(strategy=GenerationType.SEQUENCE,generator="DEPARTAMENTO_ID_GENERATOR")
    @Column(name="DEP_ID")
    private long id;

    @Column(name="DEP_DESC")
    private String desc;

    //bi-directional many-to-one association to Academico
    @OneToMany(mappedBy="department")
    private Set<Proffesor> proffesors;
//getters and setters
}

@Entity
@Table(name="ACADEMICOS")
public class Proffesor implements Serializable {
    private static final long serialVersionUID = 1L;

    @Id
    @SequenceGenerator(name="ACADEMICOS_ID_GENERATOR", sequenceName="ACADEMICOS_SEQ")
    @GeneratedValue(strategy=GenerationType.SEQUENCE,generator="ACADEMICOS_ID_GENERATOR")
    @Column(name="ACD_ID")
    private long id;
@ManyToOne(cascade={CascadeType.PERSIST,CascadeType.MERGE})
    @JoinColumn(name="ACD_DEPADSCRITO_DEP")
    private Department department;
// getters and setters.
}

トランザクション Spring サービスの後、この方法でエンティティを操作する次のコードがあります。

@Transactional (propagation=Propagation.REQUIRED)
    public void createDepartmentWithExistentProffesor(String desc,Long idAvaiableProf) {
        // new department   
        Department dep = new Department();
        dep.setDesc(desc);
        HashSet<Proffesor> proffesors = new HashSet<Proffesor>();
        dep.setProffesors(proffesors);


// I obtain the correct attached Proffesor entity
        Proffesor proffesor=DAOQueryBasic.getProffesorById(idAvaiableProf);

// I asign the relationship beetwen proffesor and department in both directions
                dep.addProffesors(proffesor);
// Persists department      
        DAODataBasic.insertDepartment(dep);
// The id value is not correct then Exception ORA-0221
        System.out.println("SERVICIO: Departamento creado con id: " + dep.getId());

    }

コメントで述べたように、永続化された新しい部門の ID は、トランザクション内の実際のデータベース ID ではないため、例外が生成されます。

Exception in thread "main" org.springframework.orm.jpa.JpaSystemException: org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
........

Caused by: java.sql.BatchUpdateException: ORA-02291: integrity restiction (HIBERNATE_PRB.FK_ACD2DEP) violated - primary key don't found

私はテストで、Proffesor と関係のない新しい部門エンティティを永続化しようとしましたが、新しい部門永続エンティティの ID がトランザクション内では有効な値を持っていないことを確認しましたが、トランザクションの外では、ID は既に正しい値。しかし、トランザクション内で正しい値が必要です。

誰でも私を助けることができますか?前もって感謝します。

4

1 に答える 1

0

これを試して

@OneToMany(mappedBy="department",cascade = CascadeType.PERSIST)
private Set<Proffesor> proffesors;
于 2013-02-14T09:45:16.090 に答える