Notice
Link
- Today
- Total
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- springboot
- mybatis exception
- 코드로 서버 재실행
- 텍스트컬러
- MariaDB
- 말줌임 CSS
- reactnative
- MySQL
- c언어
- rn
- 스크롤적용
- Activity 전체화면
- kill -9
- 터치좌표 view
- Back 키 클릭 감지
- SQL 마지막날
- vc++
- sql exception
- MFC
- ffmpeg
- 파티션 빠른 삭제
- view 획득
- CentOS
- SQL 첫날
- pid 찾아 kill
- springboot 재가동
- 가변영역 스크롤
- 피쉬랜드
- DB 계정생성
- CSS
Archives
개발은 하는건가..
Springboot 내장 톰켓으로 배포 시 application 환경 설정 옵션 본문
반응형
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 이 발생하여 한참 당황했으니 뒤에 공백 주의!
'SpringBoot , Thymeleaf' 카테고리의 다른 글
[에러] java.sql.SQLException: Out of range value for column (0) | 2022.03.17 |
---|---|
SpringBoot 오류 페이지 설정 관련. (0) | 2022.03.10 |
[에러] log4j-slf4j-impl cannot be present with log4j-to-slf4j (0) | 2022.03.04 |
Springboot 프로젝트명, 패키지명 변경 (IntelliJ) (0) | 2022.03.02 |
[Springboot] DB Pool 설정 (hikari pool) (0) | 2022.02.09 |
Comments