Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
/ spring-flasky Public archive

flasky demo implements with spring boot 学习轮子

License

Notifications You must be signed in to change notification settings

ivicel/spring-flasky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spring-flasky

Flasky 是 Flask Web Development 里的一个实例项目, 原项目是使用 Python 开发了, 一个类似微博的小型项目, 我用 Spring Boot 重写了一个 实现了里面提到了主要功能:

  • Post 分页, 及在登录后查看关注的人发的 Post
  • 帐号注册, 登录, 发 Post, 对他人 Post 的评论
  • 个人信息页
  • 权限系统, 帐号角色分配
  • 邮件发送系统, 通过邮件激活帐号, 重置密码
  • 关注, 取消关注功能
  • Rest API

2. 主要依赖

  • Spring Boot
  • Spring Security 用于权限控制, 登录
  • ��Spring Data JPA �数据库查询 ORM
  • Thymeleaf 模版引擎
  • MySQL 数据库
  • OhMyEmail 最简单邮箱发送系统

3. 一些笔记