반응형
SMALL
[spring boot] context-path, 포트 설정
프로젝트를 만들고 실행하게 되면 기본 설정인 http://localhost:8080/ 으로 접속하면 초기 화면이 나온다.
context-path 추가
src/main/resources/application.properties
server.servlet.context-path=/www
설정시 http://localhost:8080/www로 접속가능.
server.port=80
설정시 http://localhost/www로 접속가능.
그 외 spring boot 에서 제공하는 많은 option들은 아래 링크에서 확인하면 된다.
https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
반응형
'Web Programing! > JAVA / JSP' 카테고리의 다른 글
[JAVA] 시작과 끝 시간 측정 (0) | 2019.09.18 |
---|---|
[WARNING] The requested profile "pom.xml" could not be activated because it does not exist. (0) | 2019.09.17 |
[JAVA] Header 정보 가져오기 (0) | 2019.05.29 |
[spring boot] 이클립스, 메이븐 연동 (0) | 2019.04.19 |
[spring boot] 메이븐(maven) 설치하기 (0) | 2019.04.18 |
[spring boot] 이클립스 설치하기 (0) | 2019.04.17 |
[Spring boot]스케줄러(scheduler) (0) | 2019.04.10 |