Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. info:
  2. app:
  3. name: ${spring.application.name}
  4. description: '@application.description@'
  5. version: '@application.version@'
  6. group: '@application.group@'
  7. gitCurrentBranch: '@application.current.branch@'
  8. gitChangeSet: '@application.latest.revision@'
  9. buildDate: '@application.timestamp@'
  10. restApi: true
  11. usingDatabase: true
  12.  
  13.  
  14.  
  15. deployment:
  16. environment:
  17. name: ${deployment.environment:local}
  18.  
  19.  
  20.  
  21. spring:
  22. datasource:
  23. dataSourceClassName: oracle.jdbc.pool.OracleDataSource
  24. url: ${datasource.url:jdbc:oracle:thin:@localhost:1521:XE}
  25. username: ${datasource.username:paysafeiasso}
  26. password: ${datasource.password:paysafeiassoisnice}
  27. connectionTimeout: ${datasource.connection.timeout:10000}
  28. maxLifetime: ${datasource.max.lifetime:18000000}
  29. maximumPoolSize: ${datasource.maximum.pool_size:5}
  30. cachePrepStmts: ${datasource.cache.prep.stmts:true}
  31. prepStmtCacheSize: ${datasource.prep.stmt.cache.size:250}
  32. prepStmtCacheSqlLimit: ${datasource.prep.stmt.cache.sql.limit:2048}
  33. useServerPrepStmts: ${datasource.use.server.prep.stms:true}
  34. jpa:
  35. database: ORACLE
  36. show-sql: false
  37. generate-ddl: false
  38. hibernate:
  39. ddl-auto: none
  40. properties:
  41. hibernate:
  42. dialect: org.hibernate.dialect.Oracle12cDialect
  43. id:
  44. new_generator_mappings: true
  45. connection:
  46. handling_mode: DELAYED_ACQUISITION_AND_RELEASE_AFTER_TRANSACTION
  47. jadira:
  48. usertype:
  49. javaZone: UTC
  50. databaseZone: UTC
  51.  
  52. liquibase:
  53. contexts: ${deployment.environment.name}
  54. change-log: classpath:db/changelog/db.changelog-master.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement