最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

基于SSM實(shí)現(xiàn)個人博客系統(tǒng)

2022-03-02 10:08 作者:指南針畢業(yè)設(shè)計  | 我要投稿

?項目編號:BS-PT-005?

該博客是基于SSM實(shí)現(xiàn)的一個個人博客系統(tǒng),適合初學(xué)SSM和個人博客制作的同學(xué)學(xué)習(xí)。 主要涉及技術(shù)包括的包括 Maven、Spring、SpringMVC、MyBatis、Redis、JSP等。 前端采用Layui框架

開發(fā)工具:IDEA

JDK: JDK1.8

TOMCAT: Tomcat8

DB: MySql5

--------------------------------------------------------------------------------------------------------------------

前端頁面:

? ? ?用戶在博客系統(tǒng)前端可以實(shí)現(xiàn)博客查看,留言,評論,打賞等功能。


博客詳情:

? ??


后臺管理界面:


文章管理模塊:

? ? ?包含文件音、文章分類、文章標(biāo)簽的相關(guān)管理操作。

頁面管理模塊:

? ? ?可以自定義頁面,在前端進(jìn)行相應(yīng)的展示。

友情鏈接管理模塊:

公告管理模塊:

評論管理模塊:

用戶管理模塊:

系統(tǒng)管理模塊:

? ? 包含系統(tǒng)菜單管理和系統(tǒng)信息設(shè)置


本項目后整體基于SSM框架實(shí)現(xiàn),前端采用Layui框架,系統(tǒng)功能完整,頁面美觀大方,交互性好,運(yùn)行無BUG,比較適合畢業(yè)設(shè)計項目的應(yīng)用。

部分核心代碼實(shí)現(xiàn):

package com.liuyanzhao.ssm.blog.controller.home;import com.github.pagehelper.PageInfo;import com.liuyanzhao.ssm.blog.entity.Link;import com.liuyanzhao.ssm.blog.enums.ArticleStatus;import com.liuyanzhao.ssm.blog.enums.LinkStatus;import com.liuyanzhao.ssm.blog.enums.NoticeStatus;import com.liuyanzhao.ssm.blog.entity.*;import com.liuyanzhao.ssm.blog.service.*;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.*;import java.util.HashMap;import java.util.List;/** * 用戶的controller * * @author znz * @date 2022/1/1 */@Controllerpublic class IndexController { ? ?@Autowired ? ?private ArticleService articleService; ? ?@Autowired ? ?private LinkService linkService; ? ?@Autowired ? ?private NoticeService noticeService; ? ?@Autowired ? ?private TagService tagService; ? ?@Autowired ? ?private CommentService commentService; ? ?@RequestMapping(value = {"/", "/article"}) ? ?public String index(@RequestParam(required = false, defaultValue = "1") Integer pageIndex, ? ? ? ? ? ? ? ? ? ? ? ?@RequestParam(required = false, defaultValue = "10") Integer pageSize, Model model) { ? ? ? ?HashMap<String, Object> criteria = new HashMap<>(1); ? ? ? ?criteria.put("status", ArticleStatus.PUBLISH.getValue()); ? ? ? ?//文章列表 ? ? ? ?PageInfo<Article> articleList = articleService.pageArticle(pageIndex, pageSize, criteria); ? ? ? ?model.addAttribute("pageInfo", articleList); ? ? ? ?//公告 ? ? ? ?List<Notice> noticeList = noticeService.listNotice(NoticeStatus.NORMAL.getValue()); ? ? ? ?model.addAttribute("noticeList", noticeList); ? ? ? ?//友情鏈接 ? ? ? ?List<Link> linkList = linkService.listLink(LinkStatus.NORMAL.getValue()); ? ? ? ?model.addAttribute("linkList", linkList); ? ? ? ?//側(cè)邊欄顯示 ? ? ? ?//標(biāo)簽列表顯示 ? ? ? ?List<Tag> allTagList = tagService.listTag(); ? ? ? ?model.addAttribute("allTagList", allTagList); ? ? ? ?//最新評論 ? ? ? ?List<Comment> recentCommentList = commentService.listRecentComment(10); ? ? ? ?model.addAttribute("recentCommentList", recentCommentList); ? ? ? ?model.addAttribute("pageUrlPrefix", "/article?pageIndex"); ? ? ? ?return "Home/index"; ? ?} ? ?@RequestMapping(value = "/search") ? ?public String search( ? ? ? ? ? ?@RequestParam("keywords") String keywords, ? ? ? ? ? ?@RequestParam(required = false, defaultValue = "1") Integer pageIndex, ? ? ? ? ? ?@RequestParam(required = false, defaultValue = "10") Integer pageSize, Model model) { ? ? ? ?//文章列表 ? ? ? ?HashMap<String, Object> criteria = new HashMap<>(2); ? ? ? ?criteria.put("status", ArticleStatus.PUBLISH.getValue()); ? ? ? ?criteria.put("keywords", keywords); ? ? ? ?PageInfo<Article> articlePageInfo = articleService.pageArticle(pageIndex, pageSize, criteria); ? ? ? ?model.addAttribute("pageInfo", articlePageInfo); ? ? ? ?//側(cè)邊欄顯示 ? ? ? ?//標(biāo)簽列表顯示 ? ? ? ?List<Tag> allTagList = tagService.listTag(); ? ? ? ?model.addAttribute("allTagList", allTagList); ? ? ? ?//獲得隨機(jī)文章 ? ? ? ?List<Article> randomArticleList = articleService.listRandomArticle(8); ? ? ? ?model.addAttribute("randomArticleList", randomArticleList); ? ? ? ?//獲得熱評文章 ? ? ? ?List<Article> mostCommentArticleList = articleService.listArticleByCommentCount(8); ? ? ? ?model.addAttribute("mostCommentArticleList", mostCommentArticleList); ? ? ? ?//最新評論 ? ? ? ?List<Comment> recentCommentList = commentService.listRecentComment(10); ? ? ? ?model.addAttribute("recentCommentList", recentCommentList); ? ? ? ?model.addAttribute("pageUrlPrefix", "/search?pageIndex"); ? ? ? ?return "Home/Page/search"; ? ?} ? ?@RequestMapping("/404") ? ?public String NotFound(@RequestParam(required = false) String message, Model model) { ? ? ? ?model.addAttribute("message", message); ? ? ? ?return "Home/Error/404"; ? ?} ? ?@RequestMapping("/500") ? ?public String ServerError(@RequestParam(required = false) String message, Model model) { ? ? ? ?model.addAttribute("message", message); ? ? ? ?return "Home/Error/500"; ? ?} }


package com.liuyanzhao.ssm.blog.controller.home;import cn.hutool.http.HtmlUtil;import com.liuyanzhao.ssm.blog.dto.JsonResult;import com.liuyanzhao.ssm.blog.entity.Article;import com.liuyanzhao.ssm.blog.entity.Comment;import com.liuyanzhao.ssm.blog.enums.ArticleStatus;import com.liuyanzhao.ssm.blog.enums.Role;import com.liuyanzhao.ssm.blog.service.ArticleService;import com.liuyanzhao.ssm.blog.service.CommentService;import com.liuyanzhao.ssm.blog.util.MyUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.bind.annotation.RestController;import javax.servlet.http.HttpServletRequest;import java.util.Date;/** * @author znz * @date 2021/9/10 */@Controller@RestControllerpublic class CommentController { ? ?@Autowired ? ?private CommentService commentService; ? ?@Autowired ? ?private ArticleService articleService; ? ?/** ? ? * '添加評論 ? ? * ? ? * @param request ? ? * @param comment ? ? */ ? ?@RequestMapping(value = "/comment", method = {RequestMethod.POST}) ? ?public JsonResult insertComment(HttpServletRequest request, Comment comment) { ? ? ? ?//添加評論 ? ? ? ?comment.setCommentCreateTime(new Date()); ? ? ? ?comment.setCommentIp(MyUtils.getIpAddr(request)); ? ? ? ?if (request.getSession().getAttribute("user") != null) { ? ? ? ? ? ?comment.setCommentRole(Role.ADMIN.getValue()); ? ? ? ?} else { ? ? ? ? ? ?comment.setCommentRole(Role.VISITOR.getValue()); ? ? ? ?} ? ? ? ?comment.setCommentAuthorAvatar(MyUtils.getGravatar(comment.getCommentAuthorEmail())); ? ? ? ?//過濾字符,防止XSS攻擊 ? ? ? ?comment.setCommentContent(HtmlUtil.escape(comment.getCommentContent())); ? ? ? ?comment.setCommentAuthorName(HtmlUtil.escape(comment.getCommentAuthorName())); ? ? ? ?comment.setCommentAuthorEmail(HtmlUtil.escape(comment.getCommentAuthorEmail())); ? ? ? ?comment.setCommentAuthorUrl(HtmlUtil.escape(comment.getCommentAuthorUrl())); ? ? ? ?try { ? ? ? ? ? ?commentService.insertComment(comment); ? ? ? ? ? ?//更新文章的評論數(shù) ? ? ? ? ? ?Article article = articleService.getArticleByStatusAndId(ArticleStatus.PUBLISH.getValue(), comment.getCommentArticleId()); ? ? ? ? ? ?articleService.updateCommentCount(article.getArticleId()); ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ? ? ?return new JsonResult().fail(); ? ? ? ?} ? ? ? ?return new JsonResult().ok(); ? ?} }


package com.liuyanzhao.ssm.blog.controller.home;import com.github.pagehelper.PageInfo;import com.liuyanzhao.ssm.blog.entity.Article;import com.liuyanzhao.ssm.blog.entity.Tag;import com.liuyanzhao.ssm.blog.enums.ArticleStatus;import com.liuyanzhao.ssm.blog.service.ArticleService;import com.liuyanzhao.ssm.blog.service.TagService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.*;import java.util.HashMap;import java.util.List;/** * @author znz * @date 2021/9/2 */@Controllerpublic class TagController { ? ?@Autowired ? ?private TagService tagService; ? ?@Autowired ? ?private ArticleService articleService; ? ?/** ? ? * 根據(jù)標(biāo)簽查詢文章 ? ? * ? ? * @param tagId 標(biāo)簽ID ? ? * @return 模板 ? ? */ ? ?@RequestMapping("/tag/{tagId}") ? ?public String getArticleListByTag(@PathVariable("tagId") Integer tagId, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?@RequestParam(required = false, defaultValue = "1") Integer pageIndex, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?@RequestParam(required = false, defaultValue = "10") Integer pageSize, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Model model) { ? ? ? ?//該標(biāo)簽信息 ? ? ? ?Tag tag = tagService.getTagById(tagId); ? ? ? ?if (tag == null) { ? ? ? ? ? ?return "redirect:/404"; ? ? ? ?} ? ? ? ?model.addAttribute("tag", tag); ? ? ? ?//文章列表 ? ? ? ?HashMap<String, Object> criteria = new HashMap<>(2); ? ? ? ?criteria.put("tagId", tagId); ? ? ? ?criteria.put("status", ArticleStatus.PUBLISH.getValue()); ? ? ? ?PageInfo<Article> articlePageInfo = articleService.pageArticle(pageIndex, pageSize, criteria); ? ? ? ?model.addAttribute("pageInfo", articlePageInfo); ? ? ? ?//側(cè)邊欄 ? ? ? ?//標(biāo)簽列表顯示 ? ? ? ?List<Tag> allTagList = tagService.listTag(); ? ? ? ?model.addAttribute("allTagList", allTagList); ? ? ? ?//獲得隨機(jī)文章 ? ? ? ?List<Article> randomArticleList = articleService.listRandomArticle(8); ? ? ? ?model.addAttribute("randomArticleList", randomArticleList); ? ? ? ?//獲得熱評文章 ? ? ? ?List<Article> mostCommentArticleList = articleService.listArticleByCommentCount(8); ? ? ? ?model.addAttribute("mostCommentArticleList", mostCommentArticleList); ? ? ? ?model.addAttribute("pageUrlPrefix", "/tag?pageIndex"); ? ? ? ?return "Home/Page/articleListByTag"; ? ?} }


package com.liuyanzhao.ssm.blog.controller.home;import com.liuyanzhao.ssm.blog.entity.Article;import com.liuyanzhao.ssm.blog.entity.Category;import com.liuyanzhao.ssm.blog.entity.Page;import com.liuyanzhao.ssm.blog.entity.Tag;import com.liuyanzhao.ssm.blog.service.ArticleService;import com.liuyanzhao.ssm.blog.service.CategoryService;import com.liuyanzhao.ssm.blog.service.PageService;import com.liuyanzhao.ssm.blog.service.TagService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping;import java.util.List;/** * @author znz * @date 2021/9/7 */@Controllerpublic class PageController { ? ?@Autowired ? ?private PageService pageService; ? ?@Autowired ? ?private ArticleService articleService; ? ?@Autowired ? ?private CategoryService categoryService; ? ?@Autowired ? ?private TagService tagService; ? ?/** ? ? * 頁面詳情頁面 ? ? * ? ? * @param key ? ? * @return ? ? */ ? ?@RequestMapping(value = "/{key}") ? ?public String pageDetail(@PathVariable("key") String key, Model model) { ? ? ? ?Page page = pageService.getPageByKey(1, key); ? ? ? ?if (page == null) { ? ? ? ? ? ?return "redirect:/404"; ? ? ? ?} ? ? ? ?model.addAttribute("page", page); ? ? ? ?//側(cè)邊欄顯示 ? ? ? ?//獲得熱評文章 ? ? ? ?List<Article> mostCommentArticleList = articleService.listArticleByCommentCount(8); ? ? ? ?model.addAttribute("mostCommentArticleList", mostCommentArticleList); ? ? ? ?return "Home/Page/page"; ? ?} ? ?/** ? ? * 文章歸檔頁面顯示 ? ? * ? ? * @return ? ? */ ? ?@RequestMapping(value = "/articleFile") ? ?public String articleFile(Model model) { ? ? ? ?List<Article> articleList = articleService.listAllNotWithContent(); ? ? ? ?model.addAttribute("articleList", articleList); ? ? ? ?//側(cè)邊欄顯示 ? ? ? ?//獲得熱評文章 ? ? ? ?List<Article> mostCommentArticleList = articleService.listArticleByCommentCount(10); ? ? ? ?model.addAttribute("mostCommentArticleList", mostCommentArticleList); ? ? ? ?return "Home/Page/articleFile"; ? ?} ? ?/** ? ? * 站點(diǎn)地圖顯示 ? ? * ? ? * @return ? ? */ ? ?@RequestMapping(value = "/map") ? ?public String siteMap(Model model) { ? ? ? ?//文章顯示 ? ? ? ?List<Article> articleList = articleService.listAllNotWithContent(); ? ? ? ?model.addAttribute("articleList", articleList); ? ? ? ?//分類顯示 ? ? ? ?List<Category> categoryList = categoryService.listCategory(); ? ? ? ?model.addAttribute("categoryList", categoryList); ? ? ? ?//標(biāo)簽顯示 ? ? ? ?List<Tag> tagList = tagService.listTag(); ? ? ? ?model.addAttribute("tagList", tagList); ? ? ? ?//側(cè)邊欄顯示 ? ? ? ?//獲得熱評文章 ? ? ? ?List<Article> mostCommentArticleList = articleService.listArticleByCommentCount(10); ? ? ? ?model.addAttribute("mostCommentArticleList", mostCommentArticleList); ? ? ? ?return "Home/Page/siteMap"; ? ?} ? ?/** ? ? * 留言板 ? ? * ? ? * @return ? ? */ ? ?@RequestMapping(value = "/message") ? ?public String message(Model model) { ? ? ? ?//側(cè)邊欄顯示 ? ? ? ?//獲得熱評文章 ? ? ? ?List<Article> mostCommentArticleList = articleService.listArticleByCommentCount(8); ? ? ? ?model.addAttribute("mostCommentArticleList", mostCommentArticleList); ? ? ? ?return "Home/Page/message"; ? ?} }





基于SSM實(shí)現(xiàn)個人博客系統(tǒng)的評論 (共 條)

分享到微博請遵守國家法律
阿拉善盟| 沙湾县| 连云港市| 丹凤县| 锡林浩特市| 兴山县| 大渡口区| 公安县| 商城县| 德州市| 凤阳县| 青田县| 根河市| 阿巴嘎旗| 台山市| 新乡市| 榆树市| 肥乡县| 浦东新区| 海原县| 揭西县| 霍山县| 高阳县| 辽宁省| 商南县| 花莲县| 石阡县| 安达市| 聂荣县| 连城县| 白银市| 泰安市| 宝坻区| 邯郸县| 远安县| 峨眉山市| 徐州市| 垫江县| 天气| 鄱阳县| 武穴市|