溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Springboot的yml配置文件怎么使用

發(fā)布時間:2023-03-17 16:42:32 來源:億速云 閱讀:110 作者:iii 欄目:開發(fā)技術(shù)

今天小編給大家分享一下Springboot的yml配置文件怎么使用的相關(guān)知識點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

一、服務(wù)配置

server:
  port: 8989
  servlet:
  	# context-path就是端口號與服務(wù)之間要加的一段路徑,比如localhost:8080/wcm/login/login的/wcm就是
    context-path: /

二、數(shù)據(jù)庫連接

spring:
   datasource:
      driver-class-name: com.mysql.cj.jdbc.Driver
      url: jdbc:mysql://127.0.0.1:3306/jxc_manage?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
      username: root
      password: root
      # 數(shù)據(jù)庫連接池
      hikari:
        # 連接池名
        pool-name: DateHikariCP
        # 最小空閑連接數(shù)
        minimum-idle: 5
        # 空閑連接存活最大時間,默認(rèn)600000(10分鐘)
        idle-timeout: 180000
        # 最大連接數(shù),默認(rèn)10
        maximum-pool-size: 10
        # 從連接池返回的連接的自動提交
        auto-commit: true
        # 連接最大存活時間,0表示永久存活,默認(rèn)1800000(30分鐘)
        max-lifetime: 1800000
        # 連接超時時間,默認(rèn)30000(30秒)
        connection-timeout: 30000
        # 測試連接是否可用的查詢語句
        connection-test-query: SELECT 1
        
   ## freemarker
   freemarker:
     suffix: .ftl
     content-type: text/html
     charset: UTF-8
     template-loader-path: classpath:/views/
     request-context-attribute: ctx
     settings:
        number_format: 0.##

三、Mybatis-Plus

# Mybatis-plus配置
mybatis-plus:
  #配置Mapper映射文件
  mapper-locations: classpath*:/mapper/*Mapper.xml
  # 配置MyBatis數(shù)據(jù)返回類型別名(默認(rèn)別名是類名)
  type-aliases-package: com.lzj.admin.pojo
  configuration:
    # 自動駝峰命名
    map-underscore-to-camel-case: true

四、日志打印

## SQL 打印(方法接口所在的包,不是Mapper.xml所在的包)
logging:
  # 日志級別
  level:
    com.lzj.admin.mapper: debug
    
 ## 控制臺日志輸出格式
  pattern:
    console: '%d{2100-01-01 13:14:00.666} [%thread] %-5level %logger{50} - %msg%n'

五、Redis

#redis集群
spring:
  redis:
    host: 127.0.0.1
    port: 6379
    timeout: 20000
#    集群環(huán)境打開下面注釋,單機(jī)不需要打開
#    cluster:
#      集群信息
#      nodes: xxx.xxx.xxx.xxx:xxxx,xxx.xxx.xxx.xxx:xxxx,xxx.xxx.xxx.xxx:xxxx
#      #默認(rèn)值是5 一般當(dāng)此值設(shè)置過大時,容易報:Too many Cluster redirections
#      maxRedirects: 3
    pool:
      max-active: 8
      min-idle: 0
      max-idle: 8
      max-wait: -1
    password:

附:yml基礎(chǔ)語法

Springboot的yml配置文件怎么使用

以上就是“Springboot的yml配置文件怎么使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學(xué)習(xí)更多的知識,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI