2019年9月16日 | Leave a comment 问题: Java @Service public class T1Service { @Autowired T1Repo t1Repo; @Transactional public void test(int id) { T1 t1 = t1Repo.getOne(id); t1.setName("tt" + new Date()); } } 1234567891011 @Servicepublic class T1Service { @Autowired T1Repo t1Repo; @Transactional public void test(int id) { T1 t1 = t1Repo.getOne(id); t1.setName("tt" + new Date()); }} 虽然没有 t1Repo.save 但是会造成 update t1 , 解决: