Open zhaiweihao opened 4 years ago
在org.dromara.raincat.core.service.impl.TxManagerLocator中存储server列表的部分使用的是AtomicReference。这里的修改部分又加了锁,如果不用原子类,直接用volatile不可以吗。
org.dromara.raincat.core.service.impl.TxManagerLocator
AtomicReference
volatile
在
org.dromara.raincat.core.service.impl.TxManagerLocator
中存储server列表的部分使用的是AtomicReference
。这里的修改部分又加了锁,如果不用原子类,直接用volatile
不可以吗。