123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- application:
- process:
- id: API00
- name: UTIC Signal Open API Server
- server:
- port: 8888
- shutdown: graceful
- error:
- whitelabel:
- enabled: true
- include-exception: false
- include-stacktrace: never
- logging:
- level:
- com.zaxxer.hikari.HikariConfig: ERROR
- com.zaxxer.hikari: ERROR
- org.hibernate.SQL: ERROR
- org:
- springframework:
- security: ERROR
- jdbc:
- core:
- JdbcTemplate: ERROR
- StatementCreatorUtils: ERROR
- hibernate:
- type:
- descriptor:
- sql:
- BasicBinder: ERROR
- spring:
- application:
- name: sig-api-server
- profiles:
- active: prod
- output:
- ansi:
- enabled: always
- main:
- banner-mode: off
- datasource:
- hikari:
- driver-class-name: oracle.jdbc.OracleDriver
- jdbc-url: jdbc:oracle:thin:@192.168.10.68:1521:CVIBDB
- username: siguser
- password: siguser
- auto-commit: true
- connection-test-query: SELECT 1 FROM DUAL
- minimum-idle: 10
- #maximum-pool-size: 50
- idleTimeout: 30000
- connectTimeout: 10000
- pool-name: pool-sig-api-server
- jpa:
- open-in-view: false
- show-sql: false
- hibernate:
- ddl-auto: none
- database-platform: org.hibernate.dialect.Oracle10gDialect
- properties:
- hibernate:
- default_batch_fetch_size: 1000
- format_sql: false
- use_sql_columns: false
- hbm2ddl.auto: validate
- dialect: org.hibernate.dialect.Oracle10gDialect
- implicit_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
- physical_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
- output:
- ansi:
- enabled: always
|