@Async is not a silver bullet (@Async는 은 탄환이 아니다)
- private 메서드에는 적용이 안됨 (public만)
- self-invocation(자가 호출)해서는 안됨 (같은 클래스 내부의 메서드를 호출하는 것은 안됨)
- 리턴값에 대해서 void나 CompletableFuture<> 여야 함
참고
- https://jeong-pro.tistory.com/187
@Async is not a silver bullet (@Async는 은 탄환이 아니다)
백업
1. Spring Boot?
- 스프링 프레임워크를 사용하는 프로젝트를 쉽게 설정할 수 있도록 해주는 서브 프로젝트
2. Spring Boot의 특징
- 단독으로 스프링 애플리케이션을 생성
- Tomcat, Jetty, Undertow 를 내장
- 빌드 구성을 단순화하기 위해 'starter' 종속성 제공
- 스프링과 3th party 라이브러리를 가능한 자동적으로 설정
- 상용화에 필요한 metrics, health checks, externalized configuration 같은 기능 제공
- XML 설정을 생성하지 않고 요구하지 않음
1. Spring Initializr 로 Spring Boot 프로젝트 생성
1.1. Generator
- Spring Initializr 사이트 접속 ( https://start.spring.io/ )
( 2021년 1월 설정 화면 ) |
plugins { // 스프링부트 의존성 관리 및 애플리케이션 패키징을 위한 Gradle 플러그인 id "org.springframework.boot" version "2.4.1" // 스프링부트 버전에 대해 의존성을 자동으로 가져옴 id "io.spring.dependency-management" version "1.0.10.RELEASE" id "java" } group = "com.chakans" version = "0.0.1-SNAPSHOT" // 자바 버전 선언 sourceCompatibility = "11" repositories { mavenCentral() } // 프로젝트와 의존 관계에 있는 라이브러리 정의 dependencies { implementation "org.springframework.boot:spring-boot-starter" implementation "org.springframework.boot:spring-boot-starter-web" testImplementation ("org.springframework.boot:spring-boot-starter-test") { exclude group: "org.junit.vintage", module: "junit-vintage-engine" } } test { useJUnitPlatform() }
3. Application.java
3.1. @SpringBootApplication
- @EnableAutoConfiguration, @ComponentScan, @Configuration을 하나로 묶은 것이라 볼 수 있음
- 해당 어노테이션이 있는 package위치를 기준으로 ComponentScan을 수행함 ( 기준 package 위치 변경 가능 )
- main 메소드 위치하는 곳임
4. index.html
- resources > static 하위에 index.html 파일 생성