Guest User

Untitled

a guest
May 16th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. #### pom.xml ###
  2.  
  3. <dependencies>
  4. ...
  5. ..
  6. <dependency>
  7. <groupId>org.firebirdsql.jdbc</groupId>
  8. <artifactId>jaybird</artifactId>
  9. <version>2.1.6</version>
  10. </dependency>
  11. <dependencies>
  12.  
  13.  
  14. ############# hibernate.properties ############
  15.  
  16. hibernate.connection.username=SYSDBA
  17. hibernate.connection.password=meruvian
  18. hibernate.connection.url=jdbc:firebirdsql:localhost/3050:/opt/firebird/firstdb.fdb
  19. hibernate.connection.driver_class=org.firebirdsql.jdbc.FBDriver
  20. hibernate.dialect=org.hibernate.dialect.FirebirdDialect
  21. hibernate.bytecode.use_reflection_optimizer=true
  22. hibernate.query.imports=org.blueoxygen.cimande.security
  23. hibernate.transaction.factory_class=org.hibernate.transaction.JDBCTransactionFactory
  24. hibernate.connection.autoReconnect=true
  25. hibernate.connection.autoReconnectForPools=true
  26. hibernate.connection.is-connection-validation-required=true
  27. hibernate.show_sql=true
  28. hibernate.cache.use_query_cache=true
  29. hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider
  30. hibernate.hbm2ddl.auto=update
  31.  
  32. hibernate.c3p0.max_size=50
  33. hibernate.c3p0.min_size=1
  34. hibernate.c3p0.timeout=5000
  35. #hibernate.c3p0.max_statements=100
  36. #hibernate.c3p0.idle_test_period=300
  37. #hibernate.c3p0.acquire_increment=2
Add Comment
Please, Sign In to add comment