Hi ,
we have a requirement to point a record for which the actual batch flush/commit
has failed.
Is there a generic way by which hibernate can be hooked up for exception
scenario to pull back the actual entity for which
DB/Hibernate Error has occurred .
Most of the times we could see the hiberna
Hi All,
I have a object with below relationship
public class A {
@Id
@SequenceGenerator(name = "ID_GENERATOR", sequenceName = "Id_SEQ",
allocationSize = 1)
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator =
"ID_GENERATOR")
@Column(name = "id")
p