首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java c3p0数据源配备

2013-03-04 
java c3p0数据源配置?xml version1.0 encodingUTF-8?beans xmlnshttp://www.springframework.o

java c3p0数据源配置

<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="      http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd      http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd      http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"><bean id="dataSource5" destroy-method="close"><property name="driverClass" value="com.mysql.jdbc.Driver"/><property name="jdbcUrl" value="jdbc:mysql://192.168.1.213:3306/test?useUnicode=true&amp;characterEncoding=utf8&amp;zeroDateTimeBehavior=convertToNull"/><property name="user" value="chinahrt"/><property name="password" value="123456"/>        <property name="initialPoolSize" value="5"/><property name="minPoolSize" value="5"/><property name="maxPoolSize" value="10"/><!-- <property name="maxConnectionAge" value="1800"/> --><property name="maxIdleTime" value="1000"/><property name="acquireIncrement" value="3"/><property name="maxStatements" value="0"/><property name="idleConnectionTestPeriod" value="1000"/><!-- <property name="acquireRetryAttempts" value="30"/> --><!-- <property name="breakAfterAcquireFailure" value="true"/> --><property name="testConnectionOnCheckout" value="true"/><!-- <property name="unreturnedConnectionTimeout" value="3500"/> --><!-- <property name="debugUnreturnedConnectionStackTraces" value="true"/> --></bean></beans>

?

热点排行