总结spring下配置dbcp,c3p0,proxool数据源链接池

阅读更多

转载自 http://hiok.blog.sohu.com/66253191.html

applicationContext-datasource-jdbc.xml

 datasource

 ${jdbc.driverClassName}     ${jdbc.url}     ${jdbc.username}     ${jdbc.password}     80      20      3000     

 

   

 

 

jdbc.properties

 

#jdbc.driverClassName=net.sourceforge.jtds.jdbc.Driver #jdbc.url=jdbc:jtds:sybase://192.168.1.1:5000/test;charset=eucgb #jdbc.username=test #jdbc.password=test

 

#jdbc.driverClassName=org.hsqldb.jdbcDriver #jdbc.url=jdbc:hsqldb:file:hsqldb/test #jdbc.username=sa #jdbc.password=

jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/test?user=root&password=root&useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8 jdbc.username=root jdbc.password=root

 

#jdbc.url=jdbc:mysql://localhost:3306/test?user=root&password=root&useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8

 

#jdbc.driverClassName=net.sourceforge.jtds.jdbc.Driver #jdbc.url=jdbc:jtds:sqlserver://localhost:1433/test;useUnicode=true&characterEncoding=GBK&characterSetResults=GBK #jdbc.username=sa #jdbc.password=sa

#jndi jndi.factory.initial=weblogic.jndi.WLInitialContextFactory jndi.provider.url=t3://127.0.0.1:7001 jndi.jndiName=jdbc/test


hibernate.properties

#hibernate.dialect=org.hibernate.dialect.SQLServerDialect hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect #hibernate.dialect=org.hibernate.dialect.HSQLDialect hibernate.cache.use_query_cache=true #hibernate.cache.provider_class=net.sf.hibernate.cache.EhCacheProvider hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider hibernate.show_sql=true hibernate.format_sql=false hibernate.transaction.auto_close_session=true hibernate.connection.autocommit=false hibernate.connection.isolation=2 hibernate.hbm2ddl.auto=update hibernate.jdbc.fetch_size=50 hibernate.jdbc.batch_size=25 hibernate.default_batch_fetch_size=16 hibernate.transaction.factory_class=org.hibernate.transaction.JDBCTransactionFactory #hibernate.transaction.factory_class=net.sf.hibernate.transaction.JDBCTransactionFactory hibernate.query.factory_class=org.hibernate.hql.classic.ClassicQueryTranslatorFactory hibernate.connection.release_mode=after_transaction hibernate.cache.region_prefix=hibernate.cache.test hibernate.default_schema=test

你可能感兴趣的:(Spring,JDBC,Bean,MySQL)