Spring + Hibernate を使用しているときに、奇妙なキャッシュが発生しました。
行 A はデータベースに 2012 年で新しいデータ行を挿入します。
行 B は DB から取得し、年が 2012 であることを検出します。
行 C は年を 1970 に更新します。
行 D は年が 2012 年のままであることを検出します。なぜこれが起こるのかわかりません。 ? しかし、行 B をコメントアウトすると、行 D は 1970 になり、ある種のキャッシュのように見えます。または、findLock() で、getCurrentSession() の代わりに openSession() を使用すると、行 D も 1970 になります。だれかがこの動作を説明できますか?
試乗
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/applicationContext-Test.xml")
@TransactionConfiguration(defaultRollback = true,transactionManager="transactionManager")
@Transactional
public class OperationLockDAOTest {
@Autowired
private OperationLockDAO operationLockDAO;
@Autowired
private APIOperationDAO apiOperationDAO;
private APIOperation operation;
@Before
public void setup() {
operation = apiOperationDAO.findOperationById(Constants.OP_CREATE_SUBSCRIBER);
}
@Test
public void testAddNewLockAndReleaseLock() throws DBException{
String userKey = "testUserKey1" + Math.random();
boolean bGetLock = operationLockDAO.lockOperationByUser(userKey, operation);//line A, insert 2012
List<OperationLock> locks1 = operationLockDAO.findLock(userKey, operation);//line B
OperationLock lock1 = locks1.get(0);
Calendar cb = Calendar.getInstance();
cb.setTime(lock1.getModifytime());//get 2012
operationLockDAO.unlockOperationByUser(userKey, operation);//line C, update to 1970
List<OperationLock> locks2 = operationLockDAO.findLock(userKey, operation);//line D
OperationLock lock2 = locks2.get(0);
Calendar cr = Calendar.getInstance();
cr.setTime(lock2.getModifytime());
int crYear = cr.get(Calendar.YEAR);// still get 2012
assertTrue(crYear == Constants.LongBeforeYear);//assert time stamp of lock is set to 1970 after release
}
}
OperationLockDAOImpl.java
@Repository("operationLockDAOImpl")
public class OperationLockDAOImpl implements OperationLockDAO{
protected static final Logger logger = LoggerFactory.getLogger(OperationLockDAOImpl.class);
/**
* return true - this operation is not locked by another thread, lock behavior is successful this time
* false - this operation is locked by another thread, lock behavior failed this time
*/
@SuppressWarnings("unchecked")
@Override
@Transactional(isolation = Isolation.SERIALIZABLE)
public boolean lockOperationByUser(String userKey, APIOperation lockoperation) {
String selecSsql = "select * from operation_lock where userKey=:userKey and lockoperationId=:lockoperationId";
Session session = this.factory.getCurrentSession();
Query selectQuery = session.createSQLQuery(selecSsql).addEntity(OperationLock.class);
selectQuery.setString("userKey", userKey);
selectQuery.setLong("lockoperationId", lockoperation.getId());
List<OperationLock> operationLockList = selectQuery.list();
if(operationLockList == null || operationLockList.size() == 0){//no record for this userKey and operation, insert one anyway
String insertSql = "insert into operation_lock(`userKey`,`lockoperationId`,`modifytime`) values (:userKey, :lockoperationId, :updateTime)";
Query insertQuery = session.createSQLQuery(insertSql);
insertQuery.setString("userKey", userKey);
insertQuery.setLong("lockoperationId", lockoperation.getId());
insertQuery.setTimestamp("updateTime", new Date());
insertQuery.executeUpdate();
return true;
} else {
return false;
}
}
@Override
@Transactional(isolation = Isolation.SERIALIZABLE)
public void unlockOperationByUser(String userKey, APIOperation lockoperation) {
Date currentTime = new Date();
Calendar time = Calendar.getInstance();
time.setTime(currentTime);
time.set(Calendar.YEAR, Constants.LongBeforeYear);//it's long before
String sql = "update operation_lock set modifytime=:updatetime where userKey=:userKey and lockoperationId=:lockoperationId";
Session session = this.factory.getCurrentSession();
Query query = session.createSQLQuery(sql);
query.setTimestamp("updatetime", time.getTime());
query.setString("userKey", userKey);
query.setLong("lockoperationId", lockoperation.getId());
query.executeUpdate();
}
@SuppressWarnings("unchecked")
@Transactional(isolation = Isolation.SERIALIZABLE)
@Override
public List<OperationLock> findLock(String userKey, APIOperation lockoperation) {
String sql = "select * from operation_lock where userKey=:userKey and lockoperationId=:lockoperationId";
// Session session = this.factory.openSession();
Session session = this.factory.getCurrentSession();
Query query = session.createSQLQuery(sql).addEntity(OperationLock.class);
query.setString("userKey", userKey);
query.setLong("lockoperationId", lockoperation.getId());
List<OperationLock> result = query.list();
// session.close();
return result;
}
}