Stworzyłem aspekt, który zawiera adnotację @Transactional. Moja rada jest przywoływana zgodnie z oczekiwaniami, ale nowa jednostka AuditRecord nigdy nie jest zapisywana w bazie danych, wygląda na to, że moja adnotacja @Transactional nie działa.Wiosna @ Transakcja w aspekcie (AOP)
@Aspect
@Order(100)
public class ServiceAuditTrail {
private AppService appService;
private FooRecordRepository fooRecordRepository;
@AfterReturning("execution(* *.app.services.*.*(..))")
public void logAuditTrail(JoinPoint jp){
Object[] signatureArgs = jp.getArgs();
String methodName = jp.getSignature().getName();
List<String> args = new ArrayList<String>();
for(Object arg : signatureArgs){
args.add(arg.toString());
}
createRecord(methodName, args);
}
@Transactional
private void createRecord(String methodName, List<String> args){
AuditRecord auditRecord = new AuditRecord();
auditRecord.setDate(new Date());
auditRecord.setAction(methodName);
auditRecord.setDetails(StringUtils.join(args, ";"));
auditRecord.setUser(appService.getUser());
fooRecordRepository.addAuditRecord(auditRecord);
}
public void setAppService(AppService appService) {
this.appService = appService;
}
public void setFooRecordRepository(FooRecordRepository fooRecordRepository) {
this.fooRecordRepository= fooRecordRepository;
}
}
Kontekst fasola jest następujący:
<tx:annotation-driven transaction-manager="txManager.main" order="200"/>
<aop:aspectj-autoproxy />
<bean id="app.aspect.auditTrail" class="kernel.audit.ServiceAuditTrail">
<property name="appService" ref="app.service.generic" />
<property name="fooRecordRepository" ref="domain.repository.auditRecord" />
</bean>
Moja punktu przekroju jest przechwytywanie tylko interfejsy (interfejsy serwisowe). Metody serwisowe mogą być lub nie być transakcyjne. Jeśli metoda usługi jest transakcyjna, chciałbym, aby ta transakcja została wycofana, jeśli z jakiegoś powodu nie powiedzie się Porada.
Moje pytanie: Dlaczego adnotacja transakcyjna jest ignorowana? Jest to mój pierwszy projekt budowy usługi AOP na wiosnę. Z zadowoleniem przyjąłbym także wszelkie ulepszenia architektoniczne lub wdrożeniowe.
Dzięki!