springboot中整合Durid連線池

2021-09-30 01:35:59 字數 1001 閱讀 6629

一、導包

com.alibaba

druid

1.0.5

檔案內容:

spring:          #表示該配置直接為spring容器負責處理

datasource:

type: com.alibaba.druid.pool.druiddatasource #指定durid 作為當前專案的資料來源

driver-class-name: org.gjt.mm.mysql.driver #配置mysql的驅動程式類

url: jdbc:mysql:

username: root

password: 123456

filters: stat,wall,log4j #druid監控配置

dbcp2:

min-idle: 5 #資料庫連線池的最小維持連線數

initial-size: 5 #初始化提供的連線數

max-total: 10 #最大的連線數

max-wait-millis: 200 #等待連線獲取的最大超時時間

四、建立duridconfig類

@configuration

public class duridconfig

/*** 監控

* @return

*/@bean

public filterregistrationbean filterregistrationbean()

@bean

public datasource druiddatasource()

}

springboot中整合thymeleaf模板

一 什麼是 thymeleaf?thymeleaf是一款用於渲染xml xhtml html5內容的模板引擎。類似jsp,velocity,freemaker等 也可以輕易的與spring mvc等web框架進行整合作為web應用的模板引擎。與其它模板引擎相比,thymeleaf最大的特點是能夠直接...

springboot中整合logback日誌配置

logback是log4j框架的作者開發的新一代日誌框架,它效率更高 能夠適應諸多的執行環境,同時天然支援slf4j。預設情況下,spring boot會用logback來記錄日誌,並用info級別輸出到控制台。在執行應用程式和其他例子時,你應該已經看到很多info級別的日誌了。使用 logback...

在SpringBoot中整合Redis

科技優家 2017 01 16 17 17 上篇介紹了 spring data jpa一些使用方法,都是基於mysql資料庫來講解的,但是在實際專案中,由於訪問量的不斷增大,資料庫的壓力會越來越大,這時候類似於mysql的資料庫往往只是為了兜底或者在降級時才會有查詢操作,大部分的讀操作都會集中在快取...