List of usage examples for org.springframework.transaction TransactionStatus releaseSavepoint
void releaseSavepoint(Object savepoint) throws TransactionException;
From source file:jp.terasoluna.fw.batch.util.BatchUtil.java
/** * ??/*from w w w. jav a2s. co m*/ * @param stat TransactionStatus * @param savepoint ? * @param log Log */ public static void releaseSavepoint(TransactionStatus stat, Object savepoint, Log log) { if (log != null && log.isDebugEnabled()) { logDebug(log, LogId.DAL025048, stat); } stat.releaseSavepoint(savepoint); if (log != null && log.isDebugEnabled()) { logDebug(log, LogId.DAL025049, stat); } }