本项目基于开源项目二次开发,后端技术栈为SpringBoot + mybatis + MySQL + Redis开发,前端使用vue,前后端分离。
博客截图:
-
maven 项目 需要maven环境。
-
导入sql/blog.sql脚本。
-
设置redis和MySQL密码。
-
配置七牛云图床参数。
qiniu: accessKey: secretKey: bucket: url-prefix:
-
配置第三方登录功能相关参数。详情见第三方登录功能部分。
justAuth: clientId: gitee: github: clientSecret: gitee: github:
-
运行com/dabin/MyblogApplication.java
此项目使用mybatis-generator生成通用mapper文件,操作步骤如下:
1、resource/mybatis-generator-config.xml,配置需要生成mapper文件的表,比如comment表。
<table tableName="comment" domainObjectName="Comment" enableCountByExample="true" enableDeleteByExample="true"
enableSelectByExample="true" enableUpdateByExample="true" enableInsert="true"></table>
2、运行mybatis-generator插件,即可生成通用mapper文件。
mybatis-generator详细配置可以参考:https://juejin.cn/post/6844903982582743048
自定义mapper文件放到resource/mappers/custom目录下。
- 评论、点赞消息通知
- qq/wechat登录
- 子评论功能
- ...
开源项目离不开大家的支持,如果您有好的想法,或者修复了BUG,欢迎小伙伴们提交 Pull Request 参与开源贡献。
- fork 本项目到自己的代码仓
- 把 fork 过去的项目也就是你仓库中的项目 clone 到你的本地
- 新建分支
- 修改代码
- commit 后 push 到自己的库
- 发起PR( pull request) 请求,提交到 feature 分支
- 等待合并