【SpringBoot】配置檔案

kingdelee發表於2019-08-12

配置檔案

配置訪問字首

SpringBoot版本 配置
1.x server.context-path=/api/guache
2.x server.servlet.context-path=/api/guache

yaml:

server:
  port: 8201
  tomcat:
    uri-encoding: UTF-8
    remote-ip-header: x-forward-for
    max-threads: 1000
    max-http-post-size: 102400000 # 設定Httppost資料大小
  max-http-header-size: 102400000 # 設定HttpHeader請求頭大小ostSize =102400000   //設定Httppost資料大小
  servlet:
    context-path: /api/guache

訪問時即:
http://47.111.170.xx/api/guache

相關文章