datasource.xml 712 Bytes
Newer Older
Jason Song committed
1 2 3 4 5 6 7 8 9 10
<!--
    for ctrip datasource
-->
<Datasources>
    <Datasource
            name="${pro_titan_dbname}"
            testWhileIdle="true"
            testOnBorrow="true"
            testOnReturn="false"
            validationQuery="SELECT 1"
11
            initSql="set names utf8mb4"
Jason Song committed
12 13 14 15 16 17 18 19 20 21 22 23 24
            validationInterval="30000"
            timeBetweenEvictionRunsMillis="5000"
            maxActive="100"
            minIdle="10"
            maxWait="10000"
            initialSize="10"
            removeAbandonedTimeout="60"
            removeAbandoned="true"
            logAbandoned="false"
            minEvictableIdleTimeMillis="30000"
            option="sendStringParametersAsUnicode=false"
    />
</Datasources>