Untitled
Anonymous
plain_text
07/21/2022 12:29 PM
204 B
17
Indexable
@Service
@Slf4j
public class TestService {
public void save() {
doAsync();
}
@Async
private void doAsync() {
log.info("Async");
}
}Editor is loading...
@Service
@Slf4j
public class TestService {
public void save() {
doAsync();
}
@Async
private void doAsync() {
log.info("Async");
}
}