# 计算机网络课设SMTP客户端
**Repository Path**: imwht/smtp-client
## Basic Information
- **Project Name**: 计算机网络课设SMTP客户端
- **Description**: 计算机网络课设,smtp客户端实现,springboot+react
- **Primary Language**: Java
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 4
- **Forks**: 0
- **Created**: 2023-07-03
- **Last Updated**: 2024-03-28
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## 计算机网络课设-smtp客户端
### 环境
- openjdk-11
- maven
- node.js v20.3.1
框架 React + Springboot
### 运行效果
登录界面
客户端主页
发送效果
### 启动
>
> 启动前需要替换配置文件中smtp账号和密码还有代码中登录的账号密码
#### 后端
maven方式
```sh
mvn clean
mvn compile
mvn spring-boot:run
```
jar包启动
```shell
java -jar ./target/smtp-client-0.0.1-SNAPSHOT.jar
```
访问`localhost:8080`
#### 前端
```shell
npm install
npm start
```
访问`localhost:3000`