I use JavaEE 8 with OpenLiberty Application server .
in my project i try to use JTA over container managed transaction (BMT) in CRUD layer .
this is my example code :
@Stateless
@TransactionManagement(TransactionManagementType.CONTAINER)
public class SampleCRUD {
@Inject
private Logger logger;
@PersistenceContext
private EntityManager em;
public void insertFood(Food food) {
em.persist(food);
}
public void updateFood(Food food) {
em.merge(food);
}
public Food selectFood(long id) {
return em.find(Food.class, id);
}
public void deleteFood(long id) {
em.remove(select(id));
}
}
and Food entity :
@Table
@Entity
@SequenceGenerator(name = "default_seq", sequenceName = "food_seq", allocationSize = 1)
public class Food extends BaseEntity {
@Column(unique = true)
private String name;
I want to understand :
is there any recommendation to select on database before sql insert/delete/update operations ?
I ask this question because in CMT mode can not catch Constraint or SQL exceptions on application .
in my example codes :
- need select before persist because duplicate key exception results in application sevrer .
- need select before remove because entity not found exception results in application server .
What is JTA with container managed transaction (CMT) advantage ?
the difference is who manages the transactions demarcations
if you manage it yourself (BEAN) you control the good and the error case (and you have to do a commit/rollback)
if you let it do the container any unhandled exception will cause a rollback implicitly and also the commits are ensured for you. So you simply need to implement the logic and the rest is done by JTA
So if you do not need any special handling on transactions the easiest way is to leave the transaction handling to the container