application.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. application:
  2. process:
  3. id: OPER00
  4. name: ITS Operating Server
  5. center-id: L08
  6. region-code: 228
  7. region-name: 용인시
  8. center-comm:
  9. process-id: OPER00
  10. vds-server:
  11. process-id: VDS01
  12. vms-server:
  13. process-id: VMS01
  14. job-schedule:
  15. cctv-preset: false
  16. server:
  17. port: 8999
  18. shutdown: graceful
  19. error:
  20. whitelabel:
  21. enabled: true
  22. include-exception: false
  23. include-stacktrace: never
  24. resources:
  25. static-locations: file:src/main/resources/static/
  26. spring:
  27. output:
  28. ansi:
  29. enabled: always
  30. servlet:
  31. context-path: /
  32. session:
  33. timeout: 300
  34. # multipart:
  35. # enabled: true
  36. # file-size-threshold: 2KB
  37. # max-file-size: 200MB
  38. # max-request-size: 215MB
  39. profiles:
  40. active: dev
  41. main:
  42. banner-mode: off
  43. application:
  44. name: its-op-server
  45. jackson:
  46. property-naming-strategy: LOWER_CASE
  47. datasource:
  48. hikari:
  49. auto-commit: true
  50. connection-test-query: SELECT 1 FROM DUAL
  51. minimum-idle: 10
  52. maximum-pool-size: 50
  53. pool-name: pool-its-op-server
  54. jpa:
  55. #database: Oracle
  56. open-in-view: false
  57. show-sql: true
  58. hibernate:
  59. ddl-auto: none
  60. properties:
  61. hibernate:
  62. default_batch_fetch_size: 1000
  63. format_sql: true
  64. use_sql_columns: true
  65. hbm2ddl.auto: validate
  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
  71. logging:
  72. level:
  73. org.hibernate.SQL: INFO
  74. org:
  75. springframework:
  76. #security: DEBUG
  77. jdbc:
  78. core:
  79. JdbcTemplate: DEBUG
  80. StatementCreatorUtils: TRACE
  81. hibernate:
  82. type:
  83. descriptor:
  84. sql:
  85. BasicBinder: TRACE