### 项目需求
客户端:针对普通用户,用户登录,用户退出,菜名订购,我的订单
后台管理系统:针对管理员,管理员登录,管理员退出,天际菜单,查询菜品,修改菜品,删除菜品,订单处理,添加用户,查询用户,删除用户
### 外卖订餐系统
- 客户端
- 用户登录
- 用户退出
- 菜品订购
- 我的订单
- 后台管理系统
- 管理员登录
- 管理员退出
- 添加菜品
- 查询菜品
- 修改菜品
- 删除菜品
- 订单处理
- 添加用户
- 查询用户
- 删除用户
![image-20200206173422826](./img/外卖订餐系统脑图.png)
account 提供账户服务:用户和管理的登录退出
menu 提供菜品服务:添加菜品、删除菜品、修改菜品、查询菜品
order 提供订单服务:添加订单、删除订单、查询订单、处理订单
user 提供用户服务:添加用户、删除用户、修改用户、查询用户
分离出一个服务消费者,来调用以上四个服务提供者,服务消费者包含了客户端的前端页面和后台的接口、后台管理系统的前端页面和后台接口。用户/管理员直接访问的资源都保存在服务无消费者中,服务消费者根据具体的需求调用四个服务提供者的业务逻辑,通过Feign实现负载均衡。
四个服务提供者和一份服务消费者都需要在注册中心进行注册,同时可以使用配置中来对配置文件进行统一集中管理。
![外卖订餐系统](./img/外卖订餐系统.png)
- 创建父工程,pom.xml
> 说明:
`Spring Boot`和`Spring Boot`版本对应查看`https://start.spring.io/actuator/info`
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.southwind</groupId>
<artifactId>orderspringcloud</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>eurekaserver</module>
<module>configserver</module>
<module>menu</module>
</modules>
<properties>
<spring.boot.version>2.0.7.RELEASE</spring.boot.version>
<spring.cloud.version>Finchley.SR2</spring.cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring.cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
```
- 创建注册中心eurekaserver,pom.xml
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>orderspringcloud</artifactId>
<groupId>com.southwind</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>eurekaserver</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
<version>2.0.2.RELEASE</version>
</dependency>
</dependencies>
</project>
```
- 创建application.yml配置文件
```yaml
server:
port: 8761
eureka:
client:
service-url:
defaultZone: http://localhost:8761/eureka/
register-with-eureka: false
fetch-registry: false
```
> 说明:
`eureka.client.register-with-eureka`:是否将自己注册到eureka
`eureka.client.fetch-registry`:是否从其他注册中心获取配置
- 创建启动类
```java
package com.soutwind;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
/**
* @author wuyanshen
* @date 2020-02-06 6:24 下午
* @discription 启动类
*/
@EnableEurekaServer
@SpringBootApplication
public class EurekaServeApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServeApplication.class, args);
}
}
```
- 创建配置中心configserver,pom.xml
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>orderspringcloud</artifactId>
<groupId>com.southwind</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>configserver</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
<version>2.0.5.RELEASE</version>
</dependency>
</dependencies>
</project>
```
- 创建application.yml配置文件
```yaml
server:
port: 8762
spring:
application:
name: configserver
profiles:
active: native
cloud:
config:
server:
native:
search-locations: classpath:/shared
eureka:
client:
service-url:
defaulZone: http://localhost:8761/eureka/
instance:
prefer-ip-address: true
```
- 在shared文件夹中创建各个微服务对应的配置文件
- 创建启动类
```java
package com.southwind;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
/**
* @author wuyanshen
* @date 2020-02-06 6:37 下午
* @discription 启动类
*/
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}
```
- 创建服务提供者order,pom.xml
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>orderspringcloud</artifactId>
<groupId>com.southwind</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>order</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
<version>2.0.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.spr
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于SpringCloud的在线外卖订餐系统源码+数据库(毕业设计).zip本资源中的源码都是经过本地编译过可运行的,下载后按照文档配置好环境就可以运行。资源项目的难度比较适中,内容都是经过助教老师审定过的能够满足学习、使用需求,如果有需要的话可以放心下载使用。 基于SpringCloud的在线外卖订餐系统源码+数据库(毕业设计).zip本资源中的源码都是经过本地编译过可运行的,下载后按照文档配置好环境就可以运行。资源项目的难度比较适中,内容都是经过助教老师审定过的能够满足学习、使用需求,如果有需要的话可以放心下载使用。 基于SpringCloud的在线外卖订餐系统源码+数据库(毕业设计).zip本资源中的源码都是经过本地编译过可运行的,下载后按照文档配置好环境就可以运行。资源项目的难度比较适中,内容都是经过助教老师审定过的能够满足学习、使用需求,如果有需要的话可以放心下载使用。 基于SpringCloud的在线外卖订餐系统源码+数据库(毕业设计).zip本资源中的源码都是经过本地编译过可运行的,下载后按照文档配置好环境就可以运行。资源项目的难度比较适中,内容都是经过助教老师审定
资源推荐
资源详情
资源评论
收起资源包目录
基于SpringCloud的在线外卖订餐系统源码+数据库(毕业设计).zip (173个子文件)
$PRODUCT_WORKSPACE_FILE$ 1KB
layui.css 73KB
layer.css 14KB
layui.mobile.css 10KB
laydate.css 7KB
code.css 1KB
iconfont.eot 46KB
59.gif 10KB
22.gif 10KB
24.gif 8KB
13.gif 7KB
16.gif 7KB
39.gif 6KB
64.gif 6KB
63.gif 6KB
50.gif 6KB
loading-0.gif 6KB
4.gif 6KB
1.gif 5KB
42.gif 5KB
71.gif 5KB
21.gif 5KB
20.gif 5KB
29.gif 5KB
70.gif 4KB
5.gif 4KB
17.gif 4KB
27.gif 4KB
9.gif 4KB
44.gif 4KB
11.gif 4KB
8.gif 4KB
3.gif 4KB
23.gif 4KB
34.gif 4KB
41.gif 4KB
38.gif 4KB
65.gif 3KB
32.gif 3KB
45.gif 3KB
7.gif 3KB
12.gif 3KB
26.gif 3KB
60.gif 3KB
2.gif 3KB
40.gif 3KB
25.gif 3KB
19.gif 3KB
66.gif 3KB
18.gif 3KB
46.gif 3KB
10.gif 3KB
28.gif 3KB
51.gif 3KB
57.gif 3KB
67.gif 3KB
0.gif 3KB
48.gif 3KB
43.gif 3KB
30.gif 2KB
61.gif 2KB
33.gif 2KB
69.gif 2KB
14.gif 2KB
47.gif 2KB
36.gif 2KB
49.gif 2KB
58.gif 2KB
6.gif 2KB
54.gif 2KB
53.gif 2KB
56.gif 2KB
62.gif 2KB
31.gif 2KB
55.gif 2KB
35.gif 2KB
15.gif 2KB
loading-2.gif 2KB
37.gif 1KB
68.gif 1KB
52.gif 777B
loading-1.gif 701B
.gitignore 117B
.gitignore 112B
menu_update.html 4KB
menu_add.html 4KB
index.html 3KB
configserver.iml 80B
order.iml 80B
client.iml 80B
menu.iml 80B
orderspringcloud.iml 80B
eurekaserver.iml 80B
MenuController.java 2KB
MenuController.java 2KB
TMenuServiceImpl.java 872B
MenuFeign.java 858B
MybatisPlusConfig.java 821B
TMenu.java 794B
ClientApplication.java 614B
共 173 条
- 1
- 2
资源评论
- 立于浮华之上奏响天籁之音2024-05-26感谢资源主的分享,这个资源对我来说很有用,内容描述详尽,值得借鉴。
盈梓的博客
- 粉丝: 9239
- 资源: 2197
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 【java毕业设计】电影售票系统源码(ssm+mysql+说明文档).zip
- 【java毕业设计】大学生综合素质评分平台源码(ssm+mysql+说明文档+LW).zip
- Java实现字符串的逆序StringReverse
- 【java毕业设计】宠物医院信息管理系统源码(ssm+mysql+说明文档+LW).zip
- Linux内核5.0基础架构解析: ARM64架构、内存管理及进程管理
- 【java毕业设计】员工在线知识培训考试平台源码(ssm+mysql+说明文档).zip
- 【java毕业设计】演出道具租赁管理系统源码(ssm+mysql+说明文档).zip
- ScanMaster RPP3 脉冲放大器手册
- 【java毕业设计】社区医院儿童预防接种管理系统源码(ssm+mysql+说明文档).zip
- 【java毕业设计】企业台账管理平台源码(ssm+mysql+说明文档+LW).zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功