1 개요[편집]
- Spring Boot - how to configure port
- Spring Boot 포트 변경
- 스프링부트 웹서버 포트 변경
- 스프링부트 Web의 기본포트는 8080임
- 다른 포트를 사용하려면 application.properties 를 수정
server.port = 포트번호
- 아래는 Spring Starter Project 시작하기의 경우 예시
2 적용방법[편집]
- STS --- Package Explorer
- 프로젝트명 [boot] --- src/main/resources --- application.properties 더블클릭
server.port = 1234
- → 원하는 포트 번호 기입
- → 특별히 기입한 것이 없다면 파일 내용은 비어 있음
3 확인[편집]
- STS에서 프로젝트 실행 ( Ctrl+F11 )
- STS 콘솔 창 확인
... Tomcat started on port(s): 1234 (http)
... Started HelloStarterApplication in 2.886 seconds (JVM running for 3.87)
- → 1234 포트로 실행됨
- cmd 실행 ( Win cmd ↵ Enter )
C:\Users\zetawiki>netstat -an | findstr 1234
TCP 0.0.0.0:1234 0.0.0.0:0 LISTENING
TCP [::]:1234 [::]:0 LISTENING
4 같이 보기[편집]
- Spring Starter Project 시작하기
- 스프링부트 톰캣에서 실행하기
- 스프링부트 웹 프로퍼티
- 스프링부트
- Java.net.BindException: Address already in use: bind
0 댓글