1 Star 0 Fork 8

长流未已/TheirNotes

forked from skykira/TheirNotes 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
C.java 507 Bytes
一键复制 编辑 原始数据 按行查看 历史
skykira 提交于 2020-07-28 16:06 +08:00 . Update C.java
package com.xxx.pxy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
public class C {
@Autowired
D d;
@Async
@Transactional
public void c1() {
d.d1();
}
}
@Service
class D {
@Autowired
C c;
@Async
@Transactional
public void d1() {
c.c1();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dtd_code/TheirNotes.git
git@gitee.com:dtd_code/TheirNotes.git
dtd_code
TheirNotes
TheirNotes
master

搜索帮助