我正在尝试找到一种向现有事务添加/获取资源/状态的方法。这在春天有可能吗?
我想要实现的是类似于下面的伪代码:
@Service
@Transactional("txManager")
public class ServiceImpl implements Service {
@Override
@AddResourceHere
public TestObj doSomething(){
...
}
@Override
@AddResourceHere
public TestObj doSomethingAgain(){
...
}
}
@Aspect
@Component
public class Interceptor {
private static final Logger logger = LogManager.get(Interceptor.class);
@Before("@annotation(my.package.AddResourceHere)")
public void switchDatabase(JoinPoint joinPoint){
MyResource resource = TransactionResouceAdder.getResource("transactionSpecificResource");
if(resource == null){
TransactionResouceAdder.addResource(new MyResource("A new resource"));
...
}
else
log.info("resource has already been added for this transaction");
}
}
public class Test {
...
@Test
@Transactional("txManager")
public void doSomethingTest(){
serviceImpl.doSomething();
serviceImpl.doSomethingAgain();
}
}
我找到了类似的东西
org.springframework.transaction.support.TransactionSynchronizationManager#getResouce(Object)
org.springframework.transaction.support.TransactionSynchronizationManager#bindResource(Object, Object)
但是,这会为事务的当前线程添加资源。有没有办法让资源交易只受限制?
在我的实际代码中,我使用spring jdbc的DataSourceTransactionManager作为事务管理器。
提前感谢您的任何帮助:)
答案 0 :(得分:0)
TransactionSynchronizationManager
是为此目的而设计的,资源在交易结束时被清除(参见AbstractPlatformTransactionManager
)。你必须将它与一个方面的自定义注释挂钩,但看起来你已经知道如何做到这一点。