Files
spring-boot-rest/spring-mvc-java/src/main/java/com/baeldung/annotations/VehicleService.java
fanatixan 506962bc96 Spring annotations article (#4232)
* Spring annotations

* commented VehicleFactoryApplication to fix CI build
2018-05-12 13:43:12 -07:00

14 lines
229 B
Java

package com.baeldung.annotations;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
@Service
public class VehicleService {
@Async
public void repairCar() {
}
}