zoukankan      html  css  js  c++  java
  • 能源项目xml文件 -- app-datasource.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:context="http://www.springframework.org/schema/context" 
        xmlns:p="http://www.springframework.org/schema/p"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="    
              http://www.springframework.org/schema/beans 
              classpath:/org/springframework/beans/factory/xml/spring-beans-4.1.xsd 
              http://www.springframework.org/schema/context 
              classpath:/org/springframework/context/config/spring-context-4.1.xsd
              http://www.springframework.org/schema/tx
              classpath:org/springframework/transaction/config/spring-tx-4.1.xsd"
        default-lazy-init="false">
    
        <!-- <context:property-placeholder location="classpath:spring/datasource.properties" /> -->
    
        <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>
    
        <bean id="ucenterSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <property name="dataSource" ref="dataSource1" />
            <property name="mapperLocations" value="classpath:mybatis/mapper/ibs/*/*Dao.xml"></property>
        </bean>
        
        <bean name="ucenterMapperScannerConfigurer" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <property name="basePackage" value="com.lime.ibs.*.dao" />
            <property name="sqlSessionFactoryBeanName" value="ucenterSessionFactory"></property>
        </bean>
        
    
        <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource1" />
        </bean>
        <!-- enable transaction annotation support -->
        <tx:annotation-driven transaction-manager="txManager" />
    
    </beans>
  • 相关阅读:
    160328、rabbitMQ集群部署示例
    160325、虚拟机三种网路设置
    160324、特殊时间下拉框
    export export-default import 使用场景
    vue项目工具文件utils.js javascript常用工具类,javascript常用工具类,util.js
    如何在vuejs中抽出公共代码
    vue 各种 import 引入
    es6环境中,export与import使用方法
    基于rem的移动端响应式适配方案(详解) 移动端H5页面的设计稿尺寸大小规范
    JS获取子节点、父节点和兄弟节点的方法实例总结
  • 原文地址:https://www.cnblogs.com/ClassNotFoundException/p/6031333.html
Copyright © 2011-2022 走看看