@Service @Slf4j public class TestService { public void save() { doAsync(); } @Async private void doAsync() { log.info("Async"); } }