Spring Boot配置檔案詳解

2021-10-03 12:01:57 字數 1359 閱讀 9741

#spring boot的tomcat預設埠號配置

server.port=8080

#contextpathtomcat上下文設定

server.servlet.context-path=/myspringboot

#配置日誌檔案存放路徑

logging.file=/users/puhanjie/downloads/myspringboot.log

#配置日誌級別 debug->info->warn->error->fatal

logging.level.root=info

#是否開啟除錯模式

debug=true

#配置資料庫連線資訊

spring.datasource.driver-class-name=com.mysql.jdbc.driver

spring.datasource.url=jdbc:mysql://localhost:3306/mydb

spring.datasource.username=root

spring.datasource.password=root

#是否開啟除錯模式

debug

:true

#服務配置

server

:#web應用服務埠

port

:8080

servlet

:#contextpathtomcat上下文

context-path

: /myspringboot

#日誌配置

logging

:#日誌級別

level

:root

: info

#日誌檔案存放路徑

file

: /users/puhanjie/downloads/myspringboot.log

#資料來源配置

spring

:datasource

:driver-class-name

: com.mysql.jdbc.driver

url: jdbc:mysql://localhost:3306/mydb

username

: root

password

: root

#根據不同的環境(開發環境和生產環境)選額不同的配置檔案。開發環境,active的值為dev;生產環境,active的值為prd

#專案上線時只需改一下active的值即可使用生產環境配置檔案

spring

:profiles

:active

: prd

Spring Boot配置檔案

方式 示例 檔案路徑 classpath或者classpath的 config目錄下 檔案內容 全域性通用配置 方式 通過environment獲取 示例 system.out println ctx.getenvironment getproperty env 方式一 configurationp...

springboot配置檔案

配置檔案的作用 修改springboot自動配置的預設值 yaml yaml ain t markup language yaml a markup language 是乙個標記語言 yaml isn t markup language 不是乙個標記語言 標記語言 以前的配置檔案大都是xml檔案,y...

springboot 配置檔案

1.配置檔案 系統配置 自定義配置 server host 空格 value windows檔案路徑,包含 可以直接寫。以空格個數區分層次 logging level root trace file log.txt server.host value 顯示單引號 包 value 包 顯示雙引號 包 ...