From a21547c07990184ab1ce06e3ec3859b78c54798f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A8=80=E6=9B=8C?= <847064370@qq.com> Date: Wed, 27 Apr 2022 15:55:09 +0800 Subject: [PATCH 1/4] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index a7eaa732..de37e93c 100755 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ +## 博主开发的其他博客或论坛项目全部在这里 +**[https://liuyanzhao.com/shop.html?k=博客](https://liuyanzhao.com/shop.html?k=博客)**
+**[https://liuyanzhao.com/shop.html?k=论坛](https://liuyanzhao.com/shop.html?k=论坛)**
+- ------------------------------------------------------------------------------- + 2022 最新消息 SpringBoot轻量级推荐博客 [https://github.com/saysky/recommendedblog](https://github.com/saysky/recommendedblog)
最新消息,SpringBoot博客已经开源,[SENS](https://github.com/saysky/SENS)
最新消息 SpringBoot/SSM/Duubo多个版本 [初云博客-SpringBoot版本](https://github.com/saysky/ChuyunBlog)
From 43ca2d44a3ecce90bc84a47209f0b3f579e09f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A8=80=E6=9B=8C?= <847064370@qq.com> Date: Tue, 17 May 2022 20:58:05 +0800 Subject: [PATCH 2/4] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index de37e93c..e4ceafd7 100755 --- a/README.md +++ b/README.md @@ -2,13 +2,22 @@ **[https://liuyanzhao.com/shop.html?k=博客](https://liuyanzhao.com/shop.html?k=博客)**
**[https://liuyanzhao.com/shop.html?k=论坛](https://liuyanzhao.com/shop.html?k=论坛)**
- ------------------------------------------------------------------------------- +博主提供风吟博客二次开发功能
+目前已完成但不限于以下功能(需要相关源码可以联系博主) +- 风吟博客+协同过滤推荐功能 2022年5月 +- 风吟博客+websocket私信聊天功能 2022年4月 +- 风吟博客+ElasticSearch文章搜索高亮功能 2022年3月 +- 风吟博客改造成其他博客、论坛、知识分享平台 不计其数 + +- ---------------------------------- + 2022 最新消息 SpringBoot轻量级推荐博客 [https://github.com/saysky/recommendedblog](https://github.com/saysky/recommendedblog)
最新消息,SpringBoot博客已经开源,[SENS](https://github.com/saysky/SENS)
最新消息 SpringBoot/SSM/Duubo多个版本 [初云博客-SpringBoot版本](https://github.com/saysky/ChuyunBlog)
[更多项目、博主付费商品](https://liuyanzhao.com/shop.html) - +- ------------------------------------------------------------ # 关于项目 该博客是基于SSM实现的个人博客系统,适合初学SSM和个人博客制作的同学学习。
最新版本支持用户注册,包含用户和管理员两个角色 。
From aa99908befd4abe17e623526ec5170ccbefdf298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A8=80=E6=9B=8C?= <847064370@qq.com> Date: Thu, 30 Jun 2022 10:48:02 +0800 Subject: [PATCH 3/4] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e4ceafd7..34f7ac9b 100755 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +最新消息,博主已开通B站账号:[Java刘哥](https://space.bilibili.com/160340478),欢迎关注,分享自己原创免费Java实战课程、各种框架实战和技巧、以及公司项目经验 ## 博主开发的其他博客或论坛项目全部在这里 **[https://liuyanzhao.com/shop.html?k=博客](https://liuyanzhao.com/shop.html?k=博客)**
**[https://liuyanzhao.com/shop.html?k=论坛](https://liuyanzhao.com/shop.html?k=论坛)**
From ff3d096b4d5048f2b093dd4aeadff52e7289073d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=9B=E4=B8=8A?= <50621548+vtkdhhgg@users.noreply.github.com> Date: Sat, 23 Jul 2022 18:06:23 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E6=9B=B4=E6=94=B9=20AdminController.java?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 用户注册不会检测邮箱重复,看代码发现是给数据库传递的参数是 用户名(username) 已经改正 --- .../liuyanzhao/ssm/blog/controller/admin/AdminController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ForestBlog/src/main/java/com/liuyanzhao/ssm/blog/controller/admin/AdminController.java b/ForestBlog/src/main/java/com/liuyanzhao/ssm/blog/controller/admin/AdminController.java index 90882f82..c688018b 100755 --- a/ForestBlog/src/main/java/com/liuyanzhao/ssm/blog/controller/admin/AdminController.java +++ b/ForestBlog/src/main/java/com/liuyanzhao/ssm/blog/controller/admin/AdminController.java @@ -156,7 +156,7 @@ public JsonResult registerSubmit(HttpServletRequest request) { if (checkUserName != null) { return new JsonResult().fail("用户名已存在"); } - User checkEmail = userService.getUserByEmail(username); + User checkEmail = userService.getUserByEmail(email); if (checkEmail != null) { return new JsonResult().fail("电子邮箱已存在"); }