반응형
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] LIST, 배열 값 합치기(SUM) - 람다식 (0) | 2021.11.17 |
---|---|
[Java] Map(Key,Value) 추출하기 (0) | 2019.10.02 |
[JAVA] 자바 유일키 생성 - java.util.UUID (0) | 2019.09.27 |
[JAVA] Header 정보 가져오기 (0) | 2019.09.19 |
[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 |