123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- logging:
- level:
- ROOT: DEBUG
- com.edazone.msj.ms1: DEBUG
- io.github.jhipster: DEBUG
- eureka:
- instance:
- prefer-ip-address: true
- client:
- service-url:
- defaultZone: http://admin:${jhipster.registry.password}@localhost:8761/eureka/
- spring:
- profiles:
- active: dev
- include: swagger
- devtools:
- restart:
- enabled: true
- livereload:
- enabled: false
- jackson:
- serialization.indent_output: true
- datasource:
- type: com.zaxxer.hikari.HikariDataSource
- url: jdbc:mysql://localhost:3306/ms1?useUnicode=true&characterEncoding=utf8&useSSL=false
- username: root
- password:
- hikari:
- data-source-properties:
- cachePrepStmts: true
- prepStmtCacheSize: 250
- prepStmtCacheSqlLimit: 2048
- useServerPrepStmts: true
- jpa:
- database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
- database: MYSQL
- show-sql: true
- properties:
- hibernate.id.new_generator_mappings: true
- hibernate.cache.use_second_level_cache: false
- hibernate.cache.use_query_cache: false
- hibernate.generate_statistics: true
- mail:
- host: localhost
- port: 25
- username:
- password:
- messages:
- cache-seconds: 1
- thymeleaf:
- cache: false
- zipkin:
- base-url: http://localhost:9411
- enabled: false
- locator:
- discovery:
- enabled: true
- liquibase:
- contexts: dev
- server:
- port: ${jhipster.serverport}
- jhipster:
- http:
- version: V_1_1
-
-
-
-
-
-
-
-
-
- security:
- client-authorization:
- access-token-uri: http://msauth/oauth/token
- token-service-id: msauth
- client-id: internal
- client-secret: internal
- mail:
- from: ms1@localhost
- base-url: http://127.0.0.1:8081
- metrics:
- jmx.enabled: true
- graphite:
- enabled: false
- host: localhost
- port: 2003
- prefix: ms1
- prometheus:
- enabled: false
- endpoint: /prometheusMetrics
- logs:
- enabled: false
- report-frequency: 60
- logging:
- logstash:
- enabled: false
- host: localhost
- port: 5000
- queue-size: 512
- spectator-metrics:
- enabled: false
-
- oauth2:
- signature-verification:
- public-key-endpoint-uri: http://msauth/oauth/token_key
-
- ttl: 3600000
-
- public-key-refresh-rate-limit: 10000
- web-client-configuration:
-
- client-id: web_app
- secret: changeit
- application:
- eda:
- testkey: hello
|