application.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. application:
  2. process:
  3. id: API00
  4. name: UTIC Signal Open API Server
  5. server:
  6. port: 7901
  7. shutdown: graceful
  8. error:
  9. whitelabel:
  10. enabled: true
  11. include-exception: false
  12. include-stacktrace: never
  13. spring:
  14. application:
  15. name: sig-api-server
  16. profiles:
  17. active: prod
  18. output:
  19. ansi:
  20. enabled: always
  21. main:
  22. banner-mode: off
  23. datasource:
  24. hikari:
  25. auto-commit: true
  26. connection-test-query: SELECT 1 FROM DUAL
  27. minimum-idle: 10
  28. #maximum-pool-size: 50
  29. pool-name: pool-sig-api-server
  30. jpa:
  31. open-in-view: false
  32. show-sql: false
  33. hibernate:
  34. ddl-auto: none
  35. properties:
  36. hibernate:
  37. default_batch_fetch_size: 1000
  38. format_sql: false
  39. use_sql_columns: false
  40. hbm2ddl.auto: validate
  41. implicit_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
  42. physical_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
  43. output:
  44. ansi:
  45. enabled: always
  46. logging:
  47. level:
  48. com.zaxxer.hikari.HikariConfig: ERROR
  49. com.zaxxer.hikari: ERROR
  50. org.hibernate.SQL: ERROR
  51. org:
  52. springframework:
  53. security: ERROR
  54. jdbc:
  55. core:
  56. JdbcTemplate: ERROR
  57. StatementCreatorUtils: ERROR
  58. hibernate:
  59. type:
  60. descriptor:
  61. sql:
  62. BasicBinder: ERROR
  63. ---
  64. spring:
  65. config:
  66. activate:
  67. on-profile: dev
  68. datasource:
  69. hikari:
  70. driver-class-name: oracle.jdbc.OracleDriver
  71. jdbc-url: jdbc:oracle:thin:@115.91.94.42:1521:HANTE
  72. username: siguser
  73. password: siguser
  74. connection-test-query: SELECT 1 FROM DUAL
  75. minimumIdle: 5
  76. maximumIdle: 10
  77. maximumPoolSize: 20
  78. idleTimeout: 30000
  79. connectTimeout: 10000
  80. jpa:
  81. database-platform: org.hibernate.dialect.Oracle10gDialect
  82. properties:
  83. hibernate:
  84. dialect: org.hibernate.dialect.Oracle10gDialect
  85. ---
  86. spring:
  87. config:
  88. activate:
  89. on-profile: prod
  90. datasource:
  91. hikari:
  92. driver-class-name: oracle.jdbc.OracleDriver
  93. jdbc-url: jdbc:oracle:thin:@192.168.10.68:1521:CVIBDB
  94. username: siguser
  95. password: siguser
  96. connection-test-query: SELECT 1 FROM DUAL
  97. minimumIdle: 5
  98. maximumIdle: 10
  99. maximumPoolSize: 20
  100. idleTimeout: 30000
  101. connectTimeout: 10000
  102. jpa:
  103. database-platform: org.hibernate.dialect.Oracle10gDialect
  104. properties:
  105. hibernate:
  106. dialect: org.hibernate.dialect.Oracle10gDialect