# spring-cloud-course **Repository Path**: blood-elf/spring-cloud-course ## Basic Information - **Project Name**: spring-cloud-course - **Description**: spring coloud demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-08 - **Last Updated**: 2021-08-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 工程简介 |核心组件|Spring Cloud| |----|----| |服务注册中心|Spring Cloud Netflix Eureka| |服务调用方式|REST API,Feign,Ribbon| |服务网关|Spring Cloud Netflix Zuul| |断路器|Spring Cloud Netflix Hystrix| # 延伸阅读 ``` create table course ( id int not null primary key, course_id int not null comment '课程ID', name varchar(50) not null comment '课程名', valid int default 1 not null comment '是否上架:0-下架,1-上架', create_time timestamp default CURRENT_TIMESTAMP not null comment '创建时间' ); ``` ``` create table course_price ( id int not null primary key, course_id int not null comment '课程ID', price int not null comment '价格' ); ```