Blame view

resources/dbconfig.properties 1.08 KB
ad5081d3   孙向锦   初始化项目
1
  #数据源 1
92455d76   孙向锦   添加更新到服务器
2
  url:jdbc:mysql://localhost:3306/sunvote?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8 
ad5081d3   孙向锦   初始化项目
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  driverClassName:com.mysql.jdbc.Driver
  username:root
  password:elvis
  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:true
  removeAbandonedTimeout:1800
  logAbandoned:true
  
  #数据源 2(没启用,不用管,文档大全里面有配置文档)
92455d76   孙向锦   添加更新到服务器
24
  url2:jdbc:mysql://localhost:3306/sunvote2?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8 
ad5081d3   孙向锦   初始化项目
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  driverClassName2:com.mysql.jdbc.Driver
  username2:root
  password2:elvis
  filters2:stat
  maxActive2:20
  initialSize2:1
  maxWait2:60000
  minIdle2:10
  maxIdle2:15
  timeBetweenEvictionRunsMillis2:60000
  minEvictableIdleTimeMillis2:300000
  validationQuery2:SELECT 'x'
  testWhileIdle2:true
  testOnBorrow2:false
  testOnReturn2:false
  maxOpenPreparedStatements2:20
  removeAbandoned2:true
  removeAbandonedTimeout2:1800
  logAbandoned2:true