Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
152 B
1
Indexable
Never
@Service
@Slf4j
public class TestService {

  public void save() {
    doAsync();
  }

  @Async
  private void doAsync() {
    log.info("Async");
  }

}