🦄 开源社区系统:基于 SpringBoot + MyBatis + MySQL + Redis + Kafka + Elasticsearch + Spring Security + ... 并提供详细的开发文档和配套教程。包含帖子、评论、私信、系统通知、点赞、关注、搜索、用户设置、数据统计等模块。
Go to file
2021-01-24 16:55:16 +08:00
.mvn/wrapper Complete index page 2021-01-17 11:14:50 +08:00
docs Complete private chat function 2021-01-24 16:55:16 +08:00
log/community Complete private chat function 2021-01-24 16:55:16 +08:00
sql Complete private chat function 2021-01-24 16:55:16 +08:00
src Complete private chat function 2021-01-24 16:55:16 +08:00
upload Complete private chat function 2021-01-24 16:55:16 +08:00
.gitignore Complete index page 2021-01-17 11:14:50 +08:00
mvnw Complete index page 2021-01-17 11:14:50 +08:00
mvnw.cmd Complete index page 2021-01-17 11:14:50 +08:00
pom.xml Complete add discussPosts function 2021-01-22 12:10:47 +08:00
README.md Complete private chat function 2021-01-24 16:55:16 +08:00

Echo — 开源社区系统


🎁 从本项目你能学到什么

  • 学会主流的 Java Web 开发技术和框架
  • 积累一个真实的 Web 项目开发经验
  • 掌握本项目中涉及的常见面试题的答题策略

💻 核心技术栈

后端:

  • Spring
  • Spring Boot 2.4
  • Spring MVC
  • ORMMyBatis
  • 数据库MySQL 5.7
  • 缓存Redis
  • 消息队列Kafka
  • 搜索引擎Elasticsearch
  • 安全Spring Security
  • 监控Spring Actuator
  • 日志SLF4J日志接口 + Logback日志实现

前端:

  • Thymeleaf
  • Bootstrap 4.x
  • Jquery
  • Ajax

🔨 开发环境

  • 构建工具Apache Maven
  • 集成开发工具Intellij IDEA
  • 数据库MySQL 5.7、Redis
  • 应用服务器Apache Tomcat
  • 版本控制工具Git

🔔 功能列表

  • 注册
    • 用户注册
    • 发送激活邮件
    • 激活用户
  • 登录 | 登出
    • 用户登录(生成验证码)
    • 用户登出
  • 账号设置
    • 修改头像
    • 修改密码
  • 检查登录状态(禁止未登录用户访问需要登录权限的界面)
  • 帖子模块
    • 发布帖子(过滤敏感词)
    • 分页显示帖子
    • 查看帖子详情
  • 评论功能(过滤敏感词)
    • 发布对帖子的评论(过滤敏感词)
    • 分页显示评论
    • 发布对评论的回复(过滤敏感词)
  • 私信功能
    • 发送私信(过滤敏感词)
    • 发送列表(分页显示发出的私信)
    • 私信列表(分页显示收到的私信)
    • 私信详情
  • 点赞功能
    • 点赞
    • 我收到的赞
  • 关注功能
    • 关注
    • 取消关注
    • 关注列表
    • 粉丝列表
  • 系统通知功能
    • 管理员发送系统通知
    • 用户接收系统通知
  • 搜索功能
  • 权限控制
  • 管理员的置顶、加精、删除帖子功能
  • 网站数据统计
  • 热帖排行
  • 文件上传
  • 优化网站性能

🎨 界面展示

📜 数据库设计

用户 user

DROP TABLE IF EXISTS `user`;
SET character_set_client = utf8mb4 ;
CREATE TABLE `user` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(50) DEFAULT NULL,
  `password` varchar(50) DEFAULT NULL,
  `salt` varchar(50) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `type` int(11) DEFAULT NULL COMMENT '0-普通用户; 1-超级管理员; 2-版主;',
  `status` int(11) DEFAULT NULL COMMENT '0-未激活; 1-已激活;',
  `activation_code` varchar(100) DEFAULT NULL,
  `header_url` varchar(200) DEFAULT NULL,
  `create_time` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `index_username` (`username`(20)),
  KEY `index_email` (`email`(20))
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8;

讨论帖 discuss_post

DROP TABLE IF EXISTS `discuss_post`;
SET character_set_client = utf8mb4 ;
CREATE TABLE `discuss_post` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `content` text,
  `type` int(11) DEFAULT NULL COMMENT '0-普通; 1-置顶;',
  `status` int(11) DEFAULT NULL COMMENT '0-正常; 1-精华; 2-拉黑;',
  `create_time` timestamp NULL DEFAULT NULL,
  `comment_count` int(11) DEFAULT NULL,
  `score` double DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `index_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

评论(回复)comment

CREATE TABLE `comment` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `entity_type` int(11) DEFAULT NULL COMMENT '评论目标的类别1 帖子2 评论 ',
  `entity_id` int(11) DEFAULT NULL COMMENT '评论目标的 id',
  `target_id` int(11) DEFAULT NULL COMMENT '指明对谁进行评论',
  `content` text,
  `status` int(11) DEFAULT NULL COMMENT '状态0 正常1 禁用',
  `create_time` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `index_user_id` (`user_id`),
  KEY `index_entity_id` (`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8;

登录凭证 login_ticket

DROP TABLE IF EXISTS `login_ticket`;
SET character_set_client = utf8mb4 ;
CREATE TABLE `login_ticket` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `ticket` varchar(45) NOT NULL COMMENT '凭证',
  `status` int(11) DEFAULT '0' COMMENT '凭证状态0-有效; 1-无效;',
  `expired` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '凭证到期时间',
  PRIMARY KEY (`id`),
  KEY `index_ticket` (`ticket`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

私信 message

DROP TABLE IF EXISTS `message`;
SET character_set_client = utf8mb4 ;
CREATE TABLE `message` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `from_id` int(11) DEFAULT NULL,
  `to_id` int(11) DEFAULT NULL,
  `conversation_id` varchar(45) NOT NULL,
  `content` text,
  `status` int(11) DEFAULT NULL COMMENT '0-未读;1-已读;2-删除;',
  `create_time` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `index_from_id` (`from_id`),
  KEY `index_to_id` (`to_id`),
  KEY `index_conversation_id` (`conversation_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

📖 常见面试题