| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- spring:
- jpa:
- properties:
- hibernate.integration.envers.enabled: true
- jadira.usertype.autoRegisterUserTypes: true
- show-sql: false
- hibernate:
- ddl-auto: none
- security:
- oauth2:
- client:
- accessTokenUri: ${security.server.url:http://localhost:8082}/oauth/access_token
- userAuthorizationUri: ${security.server.url:http://localhost:8082}/oauth/authorize
- clientId: crss
- clientSecret: crsssecret
- authorized-grant-types: authorization_code,refresh_token,password
- scope: openid
- access-token-validity-seconds: 3600
- resource:
- userInfoUri: ${security.server.url:http://localhost:8082}/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- server:
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- logging:
- pattern:
- level: 'username:%X{username:-system} %5p'
- level:
- com.pemc.crss: DEBUG
- com.netflix: WARN
- org.springframework.cloud: WARN
- ---
- spring:
- profiles: dev
- jpa:
- show-sql: true
- properties:
- hibernate.use_sql_comments: true
- hibernate.format_sql: true
- javax.persistence.schema-generation.database.action: none
- javax.persistence.schema-generation.create-source: metadata
- javax.persistence.schema-generation.scripts.action: drop-and-create
- javax.persistence.schema-generation.scripts.create-target: target/create.sql
- javax.persistence.schema-generation.scripts.drop-target: target/drop.sql
- ---
- spring:
- profiles: docker
- security.server.url: http://app:8080/admin
- eureka:
- client:
- serviceUrl:
- defaultZone: http://discovery:8080/eureka/
- ---
- spring:
- profiles: staging
- profiles.include: docker
- rabbitmq:
- host: rabbitmq
- graylog:
- host: 192.168.241.62
- ---
- spring:
- profiles: uat
- profiles.include: docker
- rabbitmq:
- host: pemc-oracle.ss.exist.com
- logging.level:
- com.pemc.crss: INFO
- graylog:
- host: pemc.integration.exist.com
- ---
- spring:
- profiles: pemc-staging
- profiles.include: docker
- rabbitmq:
- host: 192.168.39.117
- logging.level:
- com.pemc.crss: INFO
|