개발은 하는건가..

Springboot 내장 톰켓으로 배포 시 application 환경 설정 옵션 본문

SpringBoot , Thymeleaf

Springboot 내장 톰켓으로 배포 시 application 환경 설정 옵션

수동애비 2022. 2. 4. 18:33
반응형

 

application.properties 파일 내에 해당 옵션 추가

(설정하지 않을 경우 autoconfigure.web.ServerProperities 에 정의된 값으로 설정됨.)

# 서버 구동 포트
server.port = 포트    

# 최대 생성 가능한 스레드 생성 수
server.tomcat.threads.max = 200   

# 기본 생성 스레드 수
server.tomcat.threads.min-spare = 10   

# 최대 수용 커넥션
server.tomcat.max-connections = 2048   

# 작업 큐 사이즈
server.tomcat.accept-count = 100  

# 연결 대기 시간 ms
server.tomcat.connection-timeout = 10000 

# Http Post 요청 시 form 데이터 최대 사이즈 (기본 2MB)
server.tomcat.max-http-form-post-size=2MB

# 최대 Request body 사이즈 (기본2MB)
server.tomcat.max-swallow-size=2MB

 

* 주의 설정 값 뒤에 공백이 있는 경우 conversion exception 이 발생하여 한참 당황했으니 뒤에 공백 주의!

 

 

Comments