数据库连接JDBC
#=======================mysql============================= #jdbc.driverClassName=com.mysql.jdbc.Driver #jdbc.url=jdbc:mysql://localhost:3306/operationLog #jdbc.username=root #jdbc.password=ROOT #========================================================= #======================oracle============================= jdbc.driverClassName=oracle.jdbc.OracleDriver jdbc.url=jdbc:oracle:thin:@172.16.3.55:1521:orcl jdbc.username=operationlog jdbc.password=operationlog #========================================================= #======================sqlservice========================= ##jdbc.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver ##jdbc.url=jdbc:sqlserver://127.0.0.1:1433;DatabaseName=Students ##jdbc.username=sa ##jdbc.password=123456 #========================================================= #====================== 通用配置============================== jdbc.initialSize=5 jdbc.minIdle=5 jdbc.maxIdle=20 jdbc.maxActive=100 jdbc.maxWait=100000 jdbc.defaultAutoCommit=false jdbc.removeAbandoned=true jdbc.removeAbandonedTimeout=600 jdbc.testWhileIdle=true jdbc.timeBetweenEvictionRunsMillis=60000 jdbc.numTestsPerEvictionRun=20 jdbc.minEvictableIdleTimeMillis=300000 #=========================================================