摘要:
service就这样一个方法,数据库中数据也会进行更新 将查询出来的数据对象赋值,然后不执行更新操作,结束之后发现数据库中的数据已经更改,经过查询发现是因为hibernate缓存在事务结束之后有一个同步操作,会将更改之后的自动同步到数据库中 https://www.jianshu.com/p/8b3 阅读全文
摘要:
@Transactional public void testPerson() { try { Person person1 = personDao.findById(1); Person person2 = personDao.findById(2); Person p = new Person( 阅读全文