com.codingapi.tx.aop.service.impl.TxDefaultTransactionServerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tx-client Show documentation
Show all versions of tx-client Show documentation
tx-client project for Spring Boot
package com.codingapi.tx.aop.service.impl;
import com.codingapi.tx.aop.bean.TxTransactionInfo;
import com.codingapi.tx.aop.service.TransactionServer;
import org.aspectj.lang.ProceedingJoinPoint;
import org.springframework.stereotype.Service;
/**
* Created by lorne on 2017/6/8.
*/
@Service(value = "txDefaultTransactionServer")
public class TxDefaultTransactionServerImpl implements TransactionServer {
@Override
public Object execute(ProceedingJoinPoint point, TxTransactionInfo info) throws Throwable {
return point.proceed();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy