Mysql阿里数据源配置参考
maven pom.xml 配置 <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.5</version> </dependency> 配置 db.properties 文件 url=jdbc:mysql://localhost:3306/smbms?serverTimezone=GMT&relaxAutoCommit=true&zeroDateTimeBehavior=convertToNull driverClassName=com.mysql.jdbc.Driver user=root password=root filters=stat maxActive=20 initialSize=1 maxWait=60000 minIdle=10 maxIdle=15 timeBetweenEvictionRunsMillis=60000 minEvictableIdleTimeMillis=300000 validationQuery=SELECT 'x' testWhileIdle=true testOnBorrow=false testOnReturn=false maxOpenPreparedStatements=20 removeAbandoned