获取当前数据库连接数
@Resource private DruidDataSource druidDataSource;
int activeCount = druidDataSource.getActiveCount(); int activePeak = druidDataSource.getActivePeak(); LOG.info("当前连接数:{},最高峰值连接数:{}",activeCount,activePeak);
根据日志查看接口不是一直卡,高峰期卡顿
标签:int,数据库,sql,连接数,接口,查询数据库,druidDataSource,日志 From: https://www.cnblogs.com/qq376324789/p/17756942.html