zoukankan      html  css  js  c++  java
  • 数据库连接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
    #=========================================================
    

      

  • 相关阅读:
    Props VS State
    Component VS PureComponent
    Webpack loaders
    近期需要学习的技术
    jQuery源码解读三选择器
    jQuery源码解读二(apply和call)
    jQuery源码解读一
    Web语义化
    如何用python语言撸出图表系统
    抓取android系统日志_记录一次定位app闪退故障
  • 原文地址:https://www.cnblogs.com/feitianshaoxai/p/6604032.html
Copyright © 2011-2022 走看看