# quick-spring-cloud **Repository Path**: ccx111/quick-spring-cloud ## Basic Information - **Project Name**: quick-spring-cloud - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-22 - **Last Updated**: 2021-04-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 快速启动 spring-cloud ### 快速启动 1. 首选需要启动nacos 2. 启动对应的工程 ### 工程介绍 | 工程名称 | 工程介绍 | | ---- | ---- | | gatewary | 网关 | | common | 统一公共类 | | user | 用户中心 | | store | 商城 | | ... | ### 工程端口分布 | 工程名称 | 端口 | | ---- | ---- | | gatewary | 8800 | | admin-user | 8086 | | api-user | 8085 | ### 配置说明 application.yml 只配置需要引入的工程. 例如数据库名称, nacos注册的名字 引入对应的application-[配置名].yml ``` server: port: port spring: profiles: include: - cloud - database - redis - common config: database-name: databaseName cloud-name: cloudName ```