zoukankan      html  css  js  c++  java
  • 能源项目xml文件标签释义--DataSource

    <bean id="dataSource1" class="org.apache.tomcat.jdbc.pool.DataSource" destroy-method="close">
            <property name="poolProperties">
                <bean class="org.apache.tomcat.jdbc.pool.PoolProperties">
                    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
                    <property name="url" value="${jdbc.url}" />
                    <property name="username" value="${jdbc.user}" />
                    <property name="password" value="${jdbc.password}" />
                    <!-- Register the pool with JMX. In order for the connection pool object to create the MBean. -->
                    <property name="jmxEnabled" value="true" />
                    <!-- The indication of whether objects will be validated by the idle object evictor. -->
                    <property name="testWhileIdle" value="true" />
                    <!-- The indication of whether objects will be validated before being borrowed from the pool. -->
                    <property name="testOnBorrow" value="false" />
                    <property name="testOnReturn" value="false" />
                    <property name="initialSize" value="${jdbc.initialPoolSize}" />
                    <property name="maxActive" value="${jdbc.maxActive}" />
                    <property name="maxWait" value="${jdbc.maxWait}" />
                    <property name="minIdle" value="${jdbc.minIdle}" />
                    <property name="maxIdle" value="${jdbc.maxIdle}" />
                    <property name="maxAge" value="60000" />
                    <!-- The number of milliseconds to sleep between runs of the idle connection validation/cleaner thread. -->
                    <property name="timeBetweenEvictionRunsMillis" value="15000" />
                    <!-- The minimum amount of time an object may sit idle in the pool before it is eligible for eviction. -->
                    <property name="minEvictableIdleTimeMillis" value="60000" />
                    <property name="removeAbandoned" value="true" />
                    <property name="removeAbandonedTimeout" value="30" />
                    <property name="validationQuery" value="SELECT 1" />
                    <property name="validationInterval" value="30000" />
                </bean>
            </property>
        </bean>
  • 相关阅读:
    织梦dedecms网站数据库出错如何修复
    如何实现织梦dedecms会员登陆后就不显示广告
    搜索框里显示字段鼠标点击后就隐藏的方法
    织梦dedecms首页如何调用联动类别代码
    织梦CMS友情链接调用方法技巧大全
    DedeCMS 标题seo优化给列表页加上第x页
    DedeCMS采集教程:过滤替换的技巧
    织梦dedecms网站数据库出错如何修复
    压力测试-查看索引
    时间同步服务部署
  • 原文地址:https://www.cnblogs.com/ClassNotFoundException/p/6031306.html
Copyright © 2011-2022 走看看