我有一个结果表。我使用result_id获取结果行,然后使用结果详细信息。
我正在更新结果表的一些值:
try {
Result instance = (Result) getTransactionSession().get("com.xxx.Result", id); //$NON-NLS-1$
commit();
if (instance == null) {
ResultHome.log.debug("get successful, no instance found"); //$NON-NLS-1$
} else {
updateResultStepsSequence(id, instance);
ResultHome.log.debug("get successful, instance found"); //$NON-NLS-1$
}
return instance;
} catch (RuntimeException re) {
ResultHome.log.error("get failed", re); //$NON-NLS-1$
rollback();
throw re;
}
并且
private void updateResultStepsSequence(long resultId, Result resultInstance) {
if (resultInstance.getStepCount() > 0) {
List<ResultStep> resultSteps = resultInstance.getResultSteps();
if (resultSteps != null && !resultSteps.isEmpty() && (resultSteps.get(0).getDurationSum() == 0)) {
try {
Session session = SessionFactoryProvider.getSessionFactory().getCurrentSession();
Query query = session.getNamedQuery("updateResultStepSequence").setLong("result_id", //$NON-NLS-1$ //$NON-NLS-2$
resultId);
query.executeUpdate();
commit();
} catch (RuntimeException re) {
ResultHome.log.error("Query execution failed", re); //$NON-NLS-1$
rollback();
throw re;
}
}
}
}
执行updateResultStepsSequence()方法后,我可以看到表正在更新,但实例对象仍然在数据库更新之前保留旧值。
如何从表格中获取更新的值? 我尝试创建一个新会话,更新表并关闭新创建的会话。
通过这种方法,我可以从表中获得最新的更新值。
有更好的方法吗?