2012年9月18日 星期二

JPA 捉到舊資料的問題

如果你有一直捉到舊資料的問題,請使用
有用 BEAN Transaction ,請加上 begin(); commit();


Employee e = em.find(Employee.class, id);
try {
  em.refresh(e);
} catch(EntityNotFoundException ex){
  e = null;
}


參考文件: http://weblogs.java.net/blog/guruwons/archive/2006/09/understanding_t.html

沒有留言:

張貼留言