您好我有弹簧服务方法(A方法),它将执行两个操作。首先它将通过hibernate dao方法(B方法)将数据保存到数据库中。然后它将向spring-activiti工作流程发出信号(C方法) )进入下一阶段。现在我正在使用spring transaction manager。我正在使用如下的事务。所以我的问题是如果在工作流方法中捕获了一些异常,那么不应该恢复数据库更改..
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = Exception.class)
@Override
public WorkflowResponseBO saveDraft(PETIncidentBO pETIncident) throws DDMApplicationException {
Investigation investigation = savePETIncident(pETIncident);
WorkflowResponseBO workflowResponse = null;
if (pETIncident.getWorkflowId() == null) {
workflowResponse = initiateWorkflow(pETIncident, investigation);
}
return workflowResponse;
}
@Transactional(propagation = Propagation.REQUIRES_NEW, readOnly = false, rollbackFor = Exception.class)
private Investigation savePETIncident(PETIncidentBO pETIncident) throws DDMApplicationException {
LOGGER.info("Entered Method :: savePETIncident");
Investigation investigation = null;
try {
if (pETIncident.getWorkflowId() != null) {
investigation = investigationDao.findInvestigationByWorkflowId(pETIncident.getWorkflowId());
}
// Incident Data
Incident incident = getIncidentDetails(investigation, pETIncident);
// Investigation Data
if (investigation == null) {
investigation = new Investigation();
investigation.setInvestigatedInvolvedPerson(getIncidentInvolvedPersonDetails(incident, pETIncident));
MasterLookup allegedViolationType = null;
allegedViolationType = masterLookupDao.findMasterLookupByShortDesc(DDMConstants.PROBATIONARY_TERMINATION_LOOKUP);
investigation.setAllegedViolationType(allegedViolationType);
CollectiveBargainingAgreement collectiveBargainingAgreement = null;
collectiveBargainingAgreement = collectiveBargainingAgreementDao.findCollectiveBargainingAgreementbyId(pETIncident.getCba().getCollectiveBargainingAgreementId());
investigation.setCollectiveBargainingAgreement(collectiveBargainingAgreement);
investigation.setIncident(incident);
}
// updating the address and rehire status of the involved person
investigation = updateInvesigationInvolvedPersonDetails(investigation, pETIncident);
InvestigationUnstructuredContent content = getInvestigationUnstructuredContentDetails(investigation, pETIncident);
content = getInvestigationUnstContentDeliveryDetails(pETIncident, content, investigation.getInvestigatedInvolvedPerson().getPerson());
investigation.getInvestigationUnstConts().add(content);
investigation = getInvestigationAssignedPersonDetails(investigation, incident, pETIncident);
if (investigation.getInvestigationId() == null) {
investigationDao.createinvestigation(investigation);
} else {
investigationDao.updateinvestigation(investigation);
}
} catch (DDMDBException de) {
LOGGER.error(de);
DDMServicesExceptionHandler.handleException(de);
} catch (DDMApplicationException da) {
LOGGER.error(da);
DDMServicesExceptionHandler.handleException(da);
} catch (Exception e) {
LOGGER.error(e);
DDMServicesExceptionHandler.handleException(e);
}
LOGGER.info("Exited Method :: savePETIncident");
return investigation;
}
@Transactional(propagation = Propagation.REQUIRES_NEW, readOnly = false, rollbackFor = Exception.class)
private WorkflowResponseBO initiateWorkflow(PETIncidentBO pETIncident, Investigation investigation) throws DDMApplicationException {
// updating the workflow id in the investigation table
WorkflowResponseBO workflowResponse = null;
PETWorkflowDetailsBO petWorkflowDetails = new PETWorkflowDetailsBO();
petWorkflowDetails.setCbaId(investigation.getCollectiveBargainingAgreement().getCollectiveBargainingAgreementId().toString());
petWorkflowDetails.setInitiatorEmployeeId(pETIncident.getIncidentCreatorEmployeeId());
petWorkflowDetails.setInvovledPersonEmployeeId(pETIncident.getInvolvedPersonDeliveryDetails().getPerson().getEmployeeId());
petWorkflowDetails.setReasonForTermination(pETIncident.getReasonForTermination().getLookupShortDesc());
petWorkflowDetails.setTerminationDate(DdmDateUtils.dateToString(pETIncident.getTerminationDate(), DDMConstants.DISPLAY_DATE_FORMAT));
workflowResponse = petWorkflowService.reportProbationaryEmployeeTermination(petWorkflowDetails);
investigation.setWorkflowId(workflowResponse.getProcessId());
try {
investigationDao.updateinvestigation(investigation);
} catch (DDMDBException e) {
LOGGER.error("Error while updating investigation table");
DDMServicesExceptionHandler.handleException(e);
}
if (workflowResponse == null) {
workflowResponse = new WorkflowResponseBO();
workflowResponse.setProcessId(pETIncident.getWorkflowId());
workflowResponse.setTaskId(pETIncident.getTaskId());
}
return workflowResponse;
}
答案 0 :(得分:0)
当基于类的代理弹簧加载类时,将saveDraft方法包装在事务中。由于spring在处理对此类中方法的任何进一步调用时现在不在循环中,因此不会创建嵌套事务。
如果您希望自我调用也包含在事务中,请考虑使用AspectJ模式。在这种情况下,首先不会有代理;相反,目标类将被编织(即,它的字节代码将被修改),以便将@Transactional转换为任何类型方法的运行时行为。
或者您可以使用程序化交易。