본 글에서는 Spring Boot 내장 Tomcat thread pool 설정과 현재 톰캣 thread 개수를 간단하게 모니터링 하는 방법을 간단하게 설명합니다. tomcat thread pool 설정은 application.properties를 통해서 그리고 모니터링은 actuator를 통해 진행합니다. 1. 설정 - maven 설정 actuator와 starter-web dependency를 추가하였습니다. org.springframework.boot spring-boot-starter-actuator org.springframework.boot spring-boot-starter-web - application.properties 아래는 tomcat thread pool과 모니터링 관련 설정입니다...