标签: java sql spring hibernate spring-data
所以我有这个逻辑。这将如何工作
@Transactional public Rel unfollowUser() { myRepository.deleteAllFromTable1(); myRepository.getAllFromTable1(); return new Rel();}
问题是:第二个交易是否会从表中获取数据?删除是否应在其之前提交?它取决于某些东西吗?
答案 0 :(得分:1)
设置FlushMode of the Session to ALWAYS should do the trick。
FlushMode
Session
ALWAYS