spring boot 의 포트 설정 과 contextpath 설정

3177 단어 SpringBoot
포트 설정
Spring boot 기본 포트 는 8080 입 니 다. 변경 하려 면 application. properties 파일 을 수정 하고 설정 파일 에 추가 하 십시오.
1 server.port= 9090
일반 설정:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 ######################################################## ###EMBEDDED SERVER CONFIGURATION (ServerProperties) ######################################################## #server.port=8080 #server.address= # bind to a specific NIC #server.session-timeout= # session timeout in seconds #the context path, defaults to '/' #server.context-path=/spring-boot #server.servlet-path= # the servlet path, defaults to '/' #server.tomcat.access-log-pattern= # log pattern of the access log #server.tomcat.access-log-enabled=false # is access logging enabled #server.tomcat.protocol-header=x-forwarded-proto # ssl forward headers #server.tomcat.remote-ip-header=x-forwarded-for #server.tomcat.basedir=/tmp # base dir (usually not needed, defaults to tmp) #server.tomcat.background-processor-delay=30; # in seconds #server.tomcat.max-threads = 0 # number of threads in protocol handler #server.tomcat.uri-encoding = UTF-8 # character encoding to use for URL decoding
ContextPath 설정
Spring boot 기본 값 은 / 입 니 다. 이렇게 바로 통과 합 니 다.http://ip:port/index 페이지 에 접근 할 수 있 습 니 다.http://ip:port/path/ 접근 하려 면 application. properties 파일 에 server. context - path = / 당신 의 path 를 추가 해 야 합 니 다. 예 를 들 어 spring - boot, 그러면 방문 주 소 는?http://ip:port/spring- boot 경로.
1 server.context-path=/spring-boot
일반 설정:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 ######################################################## ###EMBEDDED SERVER CONFIGURATION (ServerProperties) ######################################################## #server.port=8080 #server.address= # bind to a specific NIC #server.session-timeout= # session timeout in seconds #the context path, defaults to '/' #server.context-path=/spring-boot #server.servlet-path= # the servlet path, defaults to '/' #server.tomcat.access-log-pattern= # log pattern of the access log #server.tomcat.access-log-enabled=false # is access logging enabled #server.tomcat.protocol-header=x-forwarded-proto # ssl forward headers #server.tomcat.remote-ip-header=x-forwarded-for #server.tomcat.basedir=/tmp # base dir (usually not needed, defaults to tmp) #server.tomcat.background-processor-delay=30; # in seconds #server.tomcat.max-threads = 0 # number of threads in protocol handler #server.tomcat.uri-encoding = UTF-8 # character encoding to use for URL decoding

좋은 웹페이지 즐겨찾기