| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- server:
- port: 8999
- shutdown: graceful
- error:
- whitelabel:
- enabled: true
- include-exception: false
- include-stacktrace: never
- path: /error
- servlet:
- session:
- timeout: 43200m
- cookie:
- name: sigcookie
- max-http-header-size: 400000
- context-path: /
- spring:
- profiles:
- active: prod
- config:
- import:
- - optional:file:${user.dir}/conf/utic-sys-mon.yml
- application:
- name: utic-sys-mon
- aop:
- proxy-target-class: true
- devtools:
- livereload:
- enabled: true
- restart:
- enabled: true
- thymeleaf:
- check-template-location: true
- prefix: classpath:/templates/
- suffix: .html
- cache: false
- mvc:
- static-path-pattern: /static/**
- logging:
- level:
- jdbc.sqlonly: DEBUG
- ---
- spring:
- config:
- activate:
- on-profile: prod
- utis-datasource:
- driver-class-name: oracle.jdbc.driver.OracleDriver
- jdbc-url: jdbc:oracle:thin:@192.168.10.21:1521:UTIS
- username: utiadmin
- password: utiadmin
- section-datasource:
- driver-class-name: oracle.jdbc.driver.OracleDriver
- jdbc-url: jdbc:oracle:thin:@192.168.10.21:1521:UTIS
- username: section
- password: section
- ---
- spring:
- config:
- activate:
- on-profile: dev
- utis-datasource:
- driver-class-name: oracle.jdbc.driver.OracleDriver
- jdbc-url: jdbc:oracle:thin:@115.91.94.42:1521:HANTE
- username: utiadmin
- password: utiadmin
- section-datasource:
- driver-class-name: oracle.jdbc.driver.OracleDriver
- jdbc-url: jdbc:oracle:thin:@115.91.94.42:1521:HANTE
- username: section
- password: section
|