连接mysql数据库的配置文件代码

jdbc.properties:

driverClassName=org.gjt.mm.mysql.Driver
url=jdbc:mysql://localhost:3306/itcast?useUnicode=true&characterEncoding=UTF-8
username=root
password=root
initialSize=1
maxActive=100
maxIdle=8
minIdle=1

你可能感兴趣的:(mysql,jdbc)