[Spring Boot] Virtual Thread 적용
스프링 부트에서 가상 스레드를 지원하기 위한 작업가상 스레드 사용 여부 프로퍼티 추가spring-boot-autoconfigure 모듈의 spring-configuration-metadata.json에 가상 스레드를 지원하기 위한 프로퍼티가 추가되었다.{ "name" : "spring.threads.virtual.enabled", "type" : "java.lang.Boolean", "description": "Whether to use virtual threads.", "defaultValue": false},따라서 해당 프로퍼티 값을 true로 설정하면 스프링 부트에서 가상 스레드를 사용할 수 있다.spring.threads.virtual.enabled=true 스레드 모델 Enum과 Conditio..