博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring boot配置druid
阅读量:6322 次
发布时间:2019-06-22

本文共 1170 字,大约阅读时间需要 3 分钟。

  hot3.png

在pom中添加starter依赖

com.alibaba
druid-spring-boot-starter
1.1.4

 

在properties中添加连接池配置

## DBspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver# JDBC url of the database.spring.datasource.url= jdbc:mysql://127.0.0.1:3306/?useUnicode=true&characterEncoding=utf-8&useSSL=false  # Login user of the database. spring.datasource.username= xxx# Name of the datasource.spring.datasource.name=test# Login password of the database.spring.datasource.password=xxxspring.jooq.sql-dialect=mysqlspring.datasource.druid.max-active=15##druid viewspring.datasource.druid.stat-view-servlet.url-pattern=/druid/*spring.datasource.druid.stat-view-servlet.login-username=adminspring.datasource.druid.stat-view-servlet.login-password=admin888spring.datasource.druid.aop-patterns=com.demo.service.*spring.aop.proxy-target-class=true

 

启动spring boot,浏览器中输入http://localhost:8080/druid/login.html,使用配置中的用户名密码登录进入druid stat view页面

druid官方stater对于配置spring aop中部分源代码:

 

详细配置请参考druid官方:

https://github.com/alibaba/druid/tree/master/druid-spring-boot-starter

转载于:https://my.oschina.net/hc24/blog/1553626

你可能感兴趣的文章
javascript获取select,checkbox,radio的值
查看>>
Metro Win8风格的按钮(Filp翻转)
查看>>
cookies/session/token
查看>>
清除代码异味
查看>>
【转】从知乎上看到“全栈开发者”讨论之后的自黑
查看>>
Java-IO流
查看>>
Linux入门-6 Linux网络基本配置
查看>>
洗礼灵魂,修炼python(22)--自定义函数(3)—函数作用域,闭包
查看>>
newcoder Tachibana Kanade Loves Probability(小数点后第k位)题解
查看>>
vue项目未加载完成前显示loading...
查看>>
windows 与linux 下用C++读取sqlite实现文件复制(一)
查看>>
IOS 5 中为什么outlet 输出口总是设定成弱类型(weak)呢
查看>>
Read-Copy Update (RCU)
查看>>
基于centos系统,系统基本检查及巩固
查看>>
在以太坊上如何取消/修改已经提交的交易
查看>>
Android IOS WebRTC 音视频开发总结(十九)-- kurento
查看>>
reshape2 数据操作 数据融合( cast)
查看>>
第一章、关于SQL Server数据库的备份和还原(sp_addumpdevice、backup、Restore)
查看>>
八、主从复制
查看>>
深入理解RunLoop 整理资料
查看>>