application.yml.1 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. application:
  2. process:
  3. id: API00
  4. name: UTIC Signal Open API Server
  5. server:
  6. port: 8888
  7. shutdown: graceful
  8. error:
  9. whitelabel:
  10. enabled: true
  11. include-exception: false
  12. include-stacktrace: never
  13. logging:
  14. level:
  15. com.zaxxer.hikari.HikariConfig: ERROR
  16. com.zaxxer.hikari: ERROR
  17. org.hibernate.SQL: ERROR
  18. org:
  19. springframework:
  20. security: ERROR
  21. jdbc:
  22. core:
  23. JdbcTemplate: ERROR
  24. StatementCreatorUtils: ERROR
  25. hibernate:
  26. type:
  27. descriptor:
  28. sql:
  29. BasicBinder: ERROR
  30. spring:
  31. application:
  32. name: sig-api-server
  33. profiles:
  34. active: prod
  35. output:
  36. ansi:
  37. enabled: always
  38. main:
  39. banner-mode: off
  40. datasource:
  41. hikari:
  42. driver-class-name: oracle.jdbc.OracleDriver
  43. jdbc-url: jdbc:oracle:thin:@192.168.10.68:1521:CVIBDB
  44. username: siguser
  45. password: siguser
  46. auto-commit: true
  47. connection-test-query: SELECT 1 FROM DUAL
  48. minimum-idle: 10
  49. #maximum-pool-size: 50
  50. idleTimeout: 30000
  51. connectTimeout: 10000
  52. pool-name: pool-sig-api-server
  53. jpa:
  54. open-in-view: false
  55. show-sql: false
  56. hibernate:
  57. ddl-auto: none
  58. database-platform: org.hibernate.dialect.Oracle10gDialect
  59. properties:
  60. hibernate:
  61. default_batch_fetch_size: 1000
  62. format_sql: false
  63. use_sql_columns: false
  64. hbm2ddl.auto: validate
  65. dialect: org.hibernate.dialect.Oracle10gDialect
  66. implicit_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
  67. physical_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
  68. output:
  69. ansi:
  70. enabled: always