├── CloudAdmin.yml ├── CloudEureka.yml ├── CloudGateWay.yml ├── CloudApiOne.yml ├── CloudUi.yml └── CloudApiTwo.yml /CloudAdmin.yml: -------------------------------------------------------------------------------- 1 | # Spring properties 2 | spring: 3 | application: 4 | name: CloudAdmin # Identify this application 5 | boot: 6 | #Spring boot admin settings 7 | admin: 8 | # url: http://localhost:2223 9 | routes: 10 | endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,loggers,auditevents,hystrix.stream,docs 11 | #Timeintervalin ms to update the status of App 12 | monitor: 13 | perio: 10000 14 | #LifeTime of App status in ms. 15 | status-lifetime: 10000 16 | #Connection Timeout in ms when App's status and info 17 | connect-timeout: 2000 18 | #Read Timeout in ms when App's status and info 19 | read-timeout: 5000 20 | metadata-keys-to-sanitize: .password$,.*secret$,.*key$,.$token$,.credentials.,.*vcap_services$ 21 | 22 | ##INFRA_ADMIN Settings 23 | project: 24 | name: spring-cloud-admin 25 | artifactId: spring-cloud-admin 26 | description: spring-cloud-admin 27 | info: 28 | app: 29 | encoding: Encoding - UTF-8 30 | java: 31 | source: Source - java ver 32 | target: Instance1 - Java ver 33 | spring: 34 | profiles: ${spring.profiles.active:default} 35 | build: 36 | name: ${project.name} 37 | artifact: ${project.artifactId} 38 | description: ${project.description} 39 | 40 | management: # If you set off security... 41 | security: 42 | enabled: false 43 | 44 | -------------------------------------------------------------------------------- /CloudEureka.yml: -------------------------------------------------------------------------------- 1 | # Spring properties 2 | spring: 3 | application: 4 | name: CloudEureka # Identify this application 5 | boot: 6 | #Spring boot admin settings 7 | admin: 8 | # url: http://localhost:2223 9 | routes: 10 | endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,loggers,auditevents,hystrix.stream,docs 11 | #Timeintervalin ms to update the status of App 12 | monitor: 13 | perio: 10000 14 | #LifeTime of App status in ms. 15 | status-lifetime: 10000 16 | #Connection Timeout in ms when App's status and info 17 | connect-timeout: 2000 18 | #Read Timeout in ms when App's status and info 19 | read-timeout: 5000 20 | metadata-keys-to-sanitize: .password$,.*secret$,.*key$,.$token$,.credentials.,.*vcap_services$ 21 | ##INFRA_ADMIN Settings 22 | project: 23 | name: spring-cloud-eureka 24 | artifactId: spring-cloud-eureka 25 | description: spring-cloud-eureka 26 | info: 27 | app: 28 | encoding: Encoding - UTF-8 29 | java: 30 | source: Source - java ver 31 | target: Instance1 - Java ver 32 | spring: 33 | profiles: ${spring.profiles.active:default} 34 | build: 35 | name: ${project.name} 36 | artifact: ${project.artifactId} 37 | description: ${project.description} 38 | 39 | management: # If you set off security... 40 | security: 41 | enabled: false 42 | 43 | -------------------------------------------------------------------------------- /CloudGateWay.yml: -------------------------------------------------------------------------------- 1 | # Spring properties 2 | spring: 3 | application: 4 | name: CloudGateWay # Identify this application 5 | boot: 6 | #Spring boot admin settings 7 | admin: 8 | # url: http://localhost:2223 9 | routes: 10 | endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,loggers,auditevents,hystrix.stream,docs 11 | #Timeintervalin ms to update the status of App 12 | monitor: 13 | perio: 10000 14 | #LifeTime of App status in ms. 15 | status-lifetime: 10000 16 | #Connection Timeout in ms when App's status and info 17 | connect-timeout: 2000 18 | #Read Timeout in ms when App's status and info 19 | read-timeout: 5000 20 | metadata-keys-to-sanitize: .password$,.*secret$,.*key$,.$token$,.credentials.,.*vcap_services$ 21 | ##INFRA_ADMIN Settings 22 | project: 23 | name: spring-cloud-gateway 24 | artifactId: spring-cloud-gateway 25 | description: spring-cloud-gateway 26 | info: 27 | app: 28 | encoding: Encoding - UTF-8 29 | java: 30 | source: Source - java ver 31 | target: Instance1 - Java ver 32 | spring: 33 | profiles: ${spring.profiles.active:default} 34 | build: 35 | name: ${project.name} 36 | artifact: ${project.artifactId} 37 | description: ${project.description} 38 | 39 | management: # If you set off security... 40 | security: 41 | enabled: false 42 | 43 | -------------------------------------------------------------------------------- /CloudApiOne.yml: -------------------------------------------------------------------------------- 1 | # Spring properties 2 | spring: 3 | application: 4 | name: CloudApiOne # Identify this application 5 | boot: 6 | #Spring boot admin settings 7 | admin: 8 | # url: http://localhost:2223 9 | routes: 10 | endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,loggers,auditevents,hystrix.stream,docs 11 | #Timeintervalin ms to update the status of App 12 | monitor: 13 | perio: 10000 14 | #LifeTime of App status in ms. 15 | status-lifetime: 10000 16 | #Connection Timeout in ms when App's status and info 17 | connect-timeout: 2000 18 | #Read Timeout in ms when App's status and info 19 | read-timeout: 5000 20 | metadata-keys-to-sanitize: .password$,.*secret$,.*key$,.$token$,.credentials.,.*vcap_services$ 21 | ##INFRA_ADMIN Settings 22 | project: 23 | name: spring-cloud-api-one 24 | artifactId: spring-cloud-api-one 25 | description: spring-cloud-api-one 26 | info: 27 | app: 28 | encoding: Encoding - UTF-8 29 | java: 30 | source: Source - java ver 31 | target: Instance1 - Java ver 32 | spring: 33 | profiles: ${spring.profiles.active:default} 34 | build: 35 | name: ${project.name} 36 | artifact: ${project.artifactId} 37 | description: ${project.description} 38 | 39 | management: # If you set off security... 40 | security: 41 | enabled: false 42 | 43 | 44 | dashboard: 'CloudApiOne Dashboard' 45 | -------------------------------------------------------------------------------- /CloudUi.yml: -------------------------------------------------------------------------------- 1 | # Spring properties 2 | spring: 3 | application: 4 | name: CloudUi # Identify this application 5 | boot: 6 | #Spring boot admin settings 7 | admin: 8 | # url: http://localhost:2223 9 | routes: 10 | endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,loggers,auditevents,hystrix.stream,docs 11 | #endpoints: env,refresh,docs 12 | #Timeintervalin ms to update the status of App 13 | monitor: 14 | perio: 10000 15 | #LifeTime of App status in ms. 16 | status-lifetime: 10000 17 | #Connection Timeout in ms when App's status and info 18 | connect-timeout: 2000 19 | #Read Timeout in ms when App's status and info 20 | read-timeout: 5000 21 | metadata-keys-to-sanitize: .password$,.*secret$,.*key$,.$token$,.credentials.,.*vcap_services$ 22 | ##INFRA_ADMIN Settings 23 | project: 24 | name: spring-cloud-ui 25 | artifactId: spring-cloud-ui 26 | description: spring-cloud-ui 27 | info: 28 | app: 29 | #encoding: Encoding - EUC-KR 30 | encoding: Encoding - UTF-8 31 | java: 32 | source: Source - java ver 33 | target: Instance1 - Java ver 34 | spring: 35 | profiles: ${spring.profiles.active:default} 36 | build: 37 | name: ${project.name} 38 | artifact: ${project.artifactId} 39 | description: ${project.description} 40 | 41 | management: # If you set off security... 42 | security: 43 | enabled: false 44 | 45 | -------------------------------------------------------------------------------- /CloudApiTwo.yml: -------------------------------------------------------------------------------- 1 | # Spring properties 2 | spring: 3 | application: 4 | name: CloudApiTwo # Identify this application 5 | boot: 6 | #Spring boot admin settings 7 | admin: 8 | # url: http://localhost:2223 9 | routes: 10 | endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,loggers,auditevents,hystrix.stream,docs 11 | #Timeintervalin ms to update the status of App 12 | monitor: 13 | perio: 10000 14 | #LifeTime of App status in ms. 15 | status-lifetime: 10000 16 | #Connection Timeout in ms when App's status and info 17 | connect-timeout: 2000 18 | #Read Timeout in ms when App's status and info 19 | read-timeout: 5000 20 | metadata-keys-to-sanitize: .password$,.*secret$,.*key$,.$token$,.credentials.,.*vcap_services$ 21 | ##INFRA_ADMIN Settings 22 | project: 23 | name: spring-cloud-api-two 24 | artifactId: spring-cloud-api-two 25 | description: spring-cloud-api-two 26 | info: 27 | app: 28 | encoding: Encoding - UTF-8 29 | java: 30 | source: Source - java ver 31 | target: Instance123232232323 - Java ver 32 | spring: 33 | profiles: ${spring.profiles.active:default} 34 | build: 35 | name: ${project.name} 36 | artifact: ${project.artifactId} 37 | description: ${project.description} 38 | 39 | management: # If you set off security... 40 | security: 41 | enabled: false 42 | 43 | datasource: 44 | portal: 45 | #driver-class-name: com.mysql.jdbc.Driver 46 | #url: jdbc:mysql://115.68.46.219:3306/testdb 47 | #username: testuser 48 | #password: 'testuser' 49 | driver-class-name: com.mysql.jdbc.Driver 50 | url: jdbc:mysql://${vcap.services.mysql-service.credentials.hostname}:${vcap.services.mysql-service.credentials.port}/${vcap.services.mysql-service.credentials.name} 51 | username: ${vcap.services.mysql-service.credentials.username} 52 | password: ${vcap.services.mysql-service.credentials.password} 53 | 54 | jpa: 55 | database: mysql 56 | show-sql: true 57 | hibernate: 58 | ddl-auto: create-drop 59 | naming: 60 | strategy: org.hibernate.dialect.MySQL5Dialect 61 | generate-ddl: false 62 | --------------------------------------------------------------------------------