标签:iss epo extern idle double comm sel panel .com
<dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> <version>10.2.2.0</version></dependency> |
hibernate.dialect=org.hibernate.dialect.DerbyDialecthibernate.connection.driver_class=org.apache.derby.jdbc.ClientDriverhibernate.connection.url=jdbc:derby://localhost/trails;create=truehibernate.connection.username=anyhibernate.connection.password=valuehibernate.hbm2ddl.auto=update |
| MySQL throws an EOFException when the database connection has been closed after the lease has expired, but it works again on subsequent requests. There is a reported issue with DBCP and the MySQL driver. Check the JIRA issue for more info and a possible solutionhttp://jira.codehaus.org/browse/TRAILS-85 |
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.0.5</version></dependency> |
hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialecthibernate.connection.driver_class=com.mysql.jdbc.Driverhibernate.connection.url=jdbc:mysql://localhost/trails?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8hibernate.connection.username=roothibernate.connection.password=hibernate.hbm2ddl.auto=update |
<dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.0.20070304</version></dependency> |
hibernate.dialect=org.hibernate.dialect.H2Dialecthibernate.connection.driver_class=org.h2.Driverhibernate.connection.url=jdbc:h2:trailshibernate.connection.username=sahibernate.connection.password=hibernate.hbm2ddl.auto=update |
<dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <version>10.2.0.2.0</version></dependency> |
hibernate.dialect=org.hibernate.dialect.Oracle9Dialecthibernate.connection.driver_class=oracle.jdbc.OracleDriverhibernate.connection.url=jdbc:oracle:thin:@localhost:1521:XEhibernate.connection.username=systemhibernate.connection.password=systemhibernate.hbm2ddl.auto=update# The Oracle JDBC driver doesn‘t like prepared statement caching very much.hibernate.statement_cache.size=0# or baching with BLOBs very much.hibernate.jdbc.batch_size=0# After a while, Oracle throws this exception: too many open cursors# Disable PreparedStatement caching for the connection pool too.# http://www.hibernate.org/120.html#A10hibernate.dbcp.ps.maxIdle = 0# Stoping hibernate from using the column-names in queries to retrieve data from the resultsets# More info in http://www.jroller.com/page/dashorst?entry=hibernate_3_1_something_performance1hibernate.jdbc.wrap_result_sets=true |
<dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>8.2-504.jdbc3</version></dependency> |
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialecthibernate.connection.driver_class=org.postgresql.Driverhibernate.connection.url=jdbc:postgresql://localhost/trailshibernate.connection.username=postgreshibernate.connection.password=postgreshibernate.hbm2ddl.auto=update |
<dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <version>1.2</version></dependency> |
hibernate.dialect=org.hibernate.dialect.SQLServerDialecthibernate.connection.driver_class=net.sourceforge.jtds.jdbc.Driverhibernate.connection.url=jdbc:jtds:sqlserver://localhost:1433/trailshibernate.connection.username=sahibernate.connection.password=hibernate.hbm2ddl.auto=update |
<dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.7</version></dependency> |
hibernate.dialect=org.hibernate.dialect.HSQLDialecthibernate.connection.driver_class=org.hsqldb.jdbcDriverhibernate.connection.url=jdbc:hsqldb:trails;shutdown=truehibernate.connection.username=sahibernate.connection.password=hibernate.hbm2ddl.auto=update |
标签:iss epo extern idle double comm sel panel .com
原文地址:http://www.cnblogs.com/kluan/p/6010110.html