<h1 align = "center">C++版牛客论坛 </h1>
## Demo展示
![homepage](./pictures_for_readme/homepage.png)
<br>__部署于[nowcoder.jvlla.com](http://nowcoder.jvlla.com),可实际体验__
用户名:aaa; 密码:aaa
或者愿意收邮件注册也行
登录不了可能因为人机认证用了谷歌reCaptcha,要能访问才能登录
## 实现说明
### 整体架构
<div align="center">
<img src="./pictures_for_readme/structure.svg" alt="structure" width="80%">
</div>
### 类间关系
<div align="center">
<img src="./pictures_for_readme/class.svg" alt="structure" width="80%">
</div>
### 调用时序(以点赞业务为例)
![time](./pictures_for_readme/time.svg)
### 技术选型
<table align="center">
<tr>
<td align="center">数据库</td>
<td align="center">MariaDB</td>
</tr>
<tr>
<td align="center">缓存</td>
<td align="center">Redis</td>
</tr>
<tr>
<td align="center">消息队列</td>
<td align="center">Kafka</td>
</tr>
<tr>
<td align="center">整体架构</td>
<td align="center">前后端分离</td>
</tr>
</table>
## 使用教程
仅保证Ubuntu20可用(太邪门了,系统换个版本都一堆问题)
安装依赖
```
sudo apt update
sudo apt install vim
sudo apt install git
sudo apt install build-essential
sudo apt install cmake
sudo apt install openssl libssl-dev
```
安装后端环境
```
# 安装libcurl
sudo apt install libcurl4-openssl-dev
# 安装nlohmann_json
git clone https://github.com/nlohmann/json.git
cd json
mkdir build && cd build
cmake ..
sudo make install
cd ~
# 安装jwt-cpp
git clone https://github.com/Thalhammer/jwt-cpp.git
cd jwt-cpp
mkdir build && cd build
cmake ..
sudo make install
cd ~
# 安装mariaDB数据库
sudo apt install mariadb-server
sudo apt install libmariadb-dev-compat libmariadb-dev libmariadbclient-dev
# 安装Redis
sudo apt install redis-server libhiredis-dev
# 安装Kafka,参照https://www.jianshu.com/p/ab005f8f3e26
sudo apt install openjdk-8-jdk
wget https://archive.apache.org/dist/kafka/2.4.0/kafka_2.13-2.4.0.tgz # 网址要是失效了就找个类似的吧
tar -zxvf kafka_2.13-2.4.0.tgz
cd kafka_2.13-2.4.0
vim config/server.properties
# 修改
# broker.id=1
# listeners=PLAINTEXT://localhost:9092
# advertised.listeners=PLAINTEXT://localhost:9092
bin/zookeeper-server-start.sh -daemon config/zookeeper.properties # 启动zookeeper
bin/kafka-server-start.sh -daemon config/server.properties # 启动Kafka
cd ~
# 安装rdkafka客户端库
git clone https://github.com/confluentinc/librdkafka.git
cd librdkafka
mkdir build && cd build
cmake ..
sudo make install
cd ~
# 安装drogon,注意要保证已安装MariaDB和Redis(否则会出现找不到数据库问题)
# 与https://github.com/drogonframework/drogon-docs/blob/master/CHN-02-%E5%AE%89%E8%A3%85.md相同
sudo apt install libjsoncpp-dev
sudo apt install uuid-dev
sudo apt install zlib1g-dev
git clone https://github.com/drogonframework/drogon
cd drogon
git submodule update --init
mkdir build && cd build
cmake ..
make && sudo make install
cd ~
```
安装前端环境
```
# npm安装和升级
sudo apt install nodejs npm
sudo npm install -g n
sudo n 16 # 18有的系统前端代理会报错 Error: connect ECONNREFUSED
# 退出终端重新进,不然cannot find module 'semver'错误 !!!!!!!!!!!!!!!!!!!!!!!!!!
```
下载项目
```
git clone https://github.com/jvlla/nowcoder_cpp_front-end.git
git clone https://github.com/jvlla/nowcoder_cpp_back-end.git
```
处理数据库
```
# 数据库改密码
mysql
ALTER USER 'root'@'localhost' IDENTIFIED BY 'admin';
flush privileges;
exit;
# 加载网站初始数据
cd nowcoder_cpp_back-end/
mysql -uroot -p
source ./nowcoder.sql
quit;
cd ~
```
修改IP地址(远程运行)
```
修改后端config.json第18行的0.0.0.0为实际IP地址
修改前端vite.config.ts第9行的localhost为实际IP地址
```
编译运行项目
```
#前端
cd nowcoder_cpp_front-end/
npm i react-router-dom@6 axios nprogress antd@5 @ant-design/icons react-google-recaptcha
npm add @types/react
# 运行前端
(npm run nowcoder -- --host &) # 后台运行且外网访问
# npm run nowcoder # 本地运行
```
```
# 后端
cd nowcoder_cpp_back-end/build
mkdir log
cmake .. # 不知道为啥说找不到rdkafka,但反正后面能编译,凑合吧
make
nohup ./nowcoder_back-end & # 后台运行
# ./nowcoder_back-end # 本地运行
```
## 部分需修改参数说明
config.json部分参考[官方文档](https://github.com/drogonframework/drogon-docs/blob/master/CHN-10-%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6.md)
实际接收邮件注册,修改UserService.cc的127-137行为你的邮箱和SMTP授权码
实际远程运行,在[这里](https://www.google.com/recaptcha/admin)注册你的google reCAPTCHA密码,并相应修改后端LoginController.cc第242行和前端login.tsx第114行
## 后记
终于实现了准备C++面试时的梦想。但还是说,能接受Java那写起来还是要舒服不少,配环境更是没法比。
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
软件开发设计:应用软件开发、系统软件开发、移动应用开发、网站开发C++、Java、python、web、C#等语言的项目开发与学习资料 硬件与设备:单片机、EDA、proteus、RTOS、包括计算机硬件、服务器、网络设备、存储设备、移动设备等 操作系统:LInux、树莓派、安卓开发、微机操作系统、网络操作系统、分布式操作系统等。此外,还有嵌入式操作系统、智能操作系统等。 网络与通信:数据传输、信号处理、网络协议、网络与通信硬件、网络安全网络与通信是一个非常广泛的领域,它涉及到计算机科学、电子工程、数学等多个学科的知识。 云计算与大数据:包括云计算平台、大数据分析、人工智能、机器学习等,云计算是一种基于互联网的计算方式,通过这种方式,共享的软硬件资源和信息可以按需提供给计算机和其他设备
资源推荐
资源详情
资源评论
收起资源包目录
C++版牛客论坛项目后端.zip (82个子文件)
cm
nowcoder.sql 118KB
CMakeLists.txt 3KB
controller
LoginController.h 3KB
UserController.cc 6KB
FollowController.cc 5KB
LikeController.h 917B
LikeController.cc 1KB
MessageController.h 2KB
CommentController.h 2KB
CommentController.cc 5KB
MessageController.cc 10KB
UserController.h 2KB
DiscussPostController.cc 4KB
DiscussPostController.h 2KB
FollowController.h 2KB
LoginController.cc 10KB
dao
DiscussPostDAO.h 1KB
UserDAO.h 1KB
MessageDAO.cc 9KB
CommentDAO.cc 2KB
UserDAO.cc 3KB
MessageDAO.h 3KB
DiscussPostDAO.cc 4KB
CommentDAO.h 831B
config.yaml 14KB
build
.gitkeep 0B
avatar
defaultAvatar.jpg 2KB
service
FollowService.h 2KB
LikeService.h 996B
DiscussPostService.h 1KB
MessageService.cc 2KB
FollowService.cc 8KB
UserService.cc 7KB
LikeService.cc 4KB
CommentService.h 888B
DiscussPostService.cc 1002B
MessageService.h 2KB
UserService.h 2KB
CommentService.cc 1KB
filter
jwt_update.h 3KB
user_id_interceptors.h 1KB
LoginRequired.h 339B
LoginRequired.cc 1KB
plugin
SMTPMail.h 2KB
SMTPMail.cc 12KB
model
model.json 4KB
DiscussPost.cc 44KB
Comment.h 11KB
User.cc 50KB
User.h 13KB
Message.h 11KB
DiscussPost.h 12KB
Message.cc 36KB
Comment.cc 40KB
config.json 17KB
test
CMakeLists.txt 502B
test_main.cc 778B
.gitignore 10KB
api_data
FollowAPIData.h 576B
CommentAPIData.h 897B
UserAPIData.h 499B
MessageAPIData.h 580B
LoginAPIData.h 2KB
DiscussPostAPIData.h 618B
LikeAPIData.h 718B
pictures_for_readme
time.svg 37KB
homepage.png 169KB
structure.svg 56KB
class.svg 74KB
util
RedisKeyUtil.h 926B
RedisKeyUtil.cpp 1KB
CommnityUtil.h 1KB
CommunityConstant.cpp 1KB
CommunityConstant.h 792B
CommnityUtil.cpp 2KB
README.md 5KB
main.cc 971B
kafka
Singleton.h 401B
KafkaConsumer.cpp 9KB
KafkaProducer.cpp 9KB
KafkaConsumer.h 414B
KafkaProducer.h 1016B
共 82 条
- 1
资源评论
妄北y
- 粉丝: 1w+
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功