# settings **Repository Path**: VipCrack/settings ## Basic Information - **Project Name**: settings - **Description**: Spring Cloud Config Git Repo. - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #配置文件说明 例: 项目工程文件下的yml内容如下 botstrap.yml server: port: 8002 spring: application: name: provider-paycenter version: 0.0.1 cloud: config: uri: ${系统环境变量}或者直接填值http://192.168.9.35:10010 profile: ${系统环境变量}或者直接填值dev label: ${系统环境变量}或者直接填值master info: app: name: {spring.application.name} version: 0.0.1 desc: 支付服务中心 则对应的配置文件要求如下: 在当前目录建立provider-paycenter文件夹,与spring.application.name相对应; 再到文件夹内建立xxx.properties配置文件; xxx配置文件命名必须为"provider-paycenter-dev.properties",既"spring.application.name"-"spring.cloud.config.profile".properties yml中的spring.cloud.config.lable则是对应配置文件的分支