톰캣에서 서버 포트 번호를 지정하지 않고 랜덤 하게 생성하는 방법이다.
동일한 애플리케이션을 서로 다른 인스턴스에서 실행할 때 포트 충돌이 일어나는 것을 방지한다.
automation을 통해 애플리케이션을 실행할 때 유용할 수 있다.
기본 포트 설정
application.properties 에 포트를 지정하지 않은 기본값
지정된 포트 설정
application.properties 에 원하는 포트를 지정
server.port=8181
랜덤 포트 설정
application.properties 에 server.port를 0으로 지정하여 랜덤 포트 넘버를 부여
1트. 포트 넘버 3474
server.port=0
2트. 포트 넘버 3505
3트. 포트 넘버 3541
'알아가기 > Spring' 카테고리의 다른 글
[Spring] Tomcat 실행 에러 해결 java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener (2) | 2023.12.08 |
---|---|
[Spring] Advice Types inside AOP (0) | 2023.11.08 |
[Spring] Eager Instantiation Vs Lazy Instantiation (0) | 2023.11.05 |
[Spring] SecurityFilterChain 로그인 후 특정 주소로 이동 (0) | 2023.08.30 |
[Spring] Spring Boot Actuator 사용 (0) | 2023.08.29 |