在Spring Boot框架下的web评论系统,实体有评论、子评论、用户和回复,实现浏览、发布、更新和删除功能。

时间: 2023-06-18 19:08:39 浏览: 188
ZIP

基于SpringBoot+Mybatis+Redis问答社区,实现了基本的登录注册、发帖、评论、点赞、回复等功能。.zip

好的,首先你需要定义四个实体类,分别为Comment、SubComment、User和Reply。其中Comment和SubComment是一对多的关系(即一个Comment下可以有多个SubComment),SubComment和Reply也是一对多的关系(即一个SubComment下可以有多个Reply),User则是一对多的关系(即一个User可以对应多个Comment和SubComment)。 下面是针对这四个实体类的建表语句: ``` CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, PRIMARY KEY (`id`) ); CREATE TABLE `comment` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` varchar(255) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ); CREATE TABLE `sub_comment` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` varchar(255) NOT NULL, `comment_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), FOREIGN KEY (`comment_id`) REFERENCES `comment`(`id`), FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ); CREATE TABLE `reply` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` varchar(255) NOT NULL, `sub_comment_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), FOREIGN KEY (`sub_comment_id`) REFERENCES `sub_comment`(`id`), FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ); ``` 接下来是Spring Boot框架下的web评论系统的实现: 1. 在pom.xml文件中添加依赖: ``` <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> ``` 2. 在application.properties文件中添加数据库连接信息: ``` spring.datasource.url=jdbc:mysql://localhost:3306/comment_system spring.datasource.username=root spring.datasource.password=123456 spring.jpa.hibernate.ddl-auto=update ``` 3. 编写实体类: User.java ```java @Entity @Table(name = "user") public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String username; private String password; @OneToMany(mappedBy = "user", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<Comment> comments; @OneToMany(mappedBy = "user", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<SubComment> subComments; @OneToMany(mappedBy = "user", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<Reply> replies; // 省略getter和setter } ``` Comment.java ```java @Entity @Table(name = "comment") public class Comment { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false) private String content; @ManyToOne @JoinColumn(name = "user_id") private User user; @OneToMany(mappedBy = "comment", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<SubComment> subComments; // 省略getter和setter } ``` SubComment.java ```java @Entity @Table(name = "sub_comment") public class SubComment { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false) private String content; @ManyToOne @JoinColumn(name = "comment_id") private Comment comment; @ManyToOne @JoinColumn(name = "user_id") private User user; @OneToMany(mappedBy = "subComment", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<Reply> replies; // 省略getter和setter } ``` Reply.java ```java @Entity @Table(name = "reply") public class Reply { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false) private String content; @ManyToOne @JoinColumn(name = "sub_comment_id") private SubComment subComment; @ManyToOne @JoinColumn(name = "user_id") private User user; // 省略getter和setter } ``` 4. 编写Repository: UserRepository.java ```java @Repository public interface UserRepository extends JpaRepository<User, Long> { } ``` CommentRepository.java ```java @Repository public interface CommentRepository extends JpaRepository<Comment, Long> { } ``` SubCommentRepository.java ```java @Repository public interface SubCommentRepository extends JpaRepository<SubComment, Long> { } ``` ReplyRepository.java ```java @Repository public interface ReplyRepository extends JpaRepository<Reply, Long> { } ``` 5. 编写Service: UserService.java ```java @Service public class UserService { @Autowired private UserRepository userRepository; public User save(User user) { return userRepository.save(user); } public User findById(Long id) { return userRepository.findById(id).orElse(null); } public List<User> findAll() { return userRepository.findAll(); } public void delete(Long id) { userRepository.deleteById(id); } } ``` CommentService.java ```java @Service public class CommentService { @Autowired private CommentRepository commentRepository; public Comment save(Comment comment) { return commentRepository.save(comment); } public Comment findById(Long id) { return commentRepository.findById(id).orElse(null); } public List<Comment> findAll() { return commentRepository.findAll(); } public void delete(Long id) { commentRepository.deleteById(id); } } ``` SubCommentService.java ```java @Service public class SubCommentService { @Autowired private SubCommentRepository subCommentRepository; public SubComment save(SubComment subComment) { return subCommentRepository.save(subComment); } public SubComment findById(Long id) { return subCommentRepository.findById(id).orElse(null); } public List<SubComment> findAll() { return subCommentRepository.findAll(); } public void delete(Long id) { subCommentRepository.deleteById(id); } } ``` ReplyService.java ```java @Service public class ReplyService { @Autowired private ReplyRepository replyRepository; public Reply save(Reply reply) { return replyRepository.save(reply); } public Reply findById(Long id) { return replyRepository.findById(id).orElse(null); } public List<Reply> findAll() { return replyRepository.findAll(); } public void delete(Long id) { replyRepository.deleteById(id); } } ``` 6. 编写Controller: UserController.java ```java @RestController @RequestMapping("/user") public class UserController { @Autowired private UserService userService; @PostMapping("/save") public User save(@RequestBody User user) { return userService.save(user); } @GetMapping("/find/{id}") public User findById(@PathVariable("id") Long id) { return userService.findById(id); } @GetMapping("/find-all") public List<User> findAll() { return userService.findAll(); } @DeleteMapping("/delete/{id}") public void delete(@PathVariable("id") Long id) { userService.delete(id); } } ``` CommentController.java ```java @RestController @RequestMapping("/comment") public class CommentController { @Autowired private CommentService commentService; @PostMapping("/save") public Comment save(@RequestBody Comment comment) { return commentService.save(comment); } @GetMapping("/find/{id}") public Comment findById(@PathVariable("id") Long id) { return commentService.findById(id); } @GetMapping("/find-all") public List<Comment> findAll() { return commentService.findAll(); } @DeleteMapping("/delete/{id}") public void delete(@PathVariable("id") Long id) { commentService.delete(id); } } ``` SubCommentController.java ```java @RestController @RequestMapping("/sub-comment") public class SubCommentController { @Autowired private SubCommentService subCommentService; @PostMapping("/save") public SubComment save(@RequestBody SubComment subComment) { return subCommentService.save(subComment); } @GetMapping("/find/{id}") public SubComment findById(@PathVariable("id") Long id) { return subCommentService.findById(id); } @GetMapping("/find-all") public List<SubComment> findAll() { return subCommentService.findAll(); } @DeleteMapping("/delete/{id}") public void delete(@PathVariable("id") Long id) { subCommentService.delete(id); } } ``` ReplyController.java ```java @RestController @RequestMapping("/reply") public class ReplyController { @Autowired private ReplyService replyService; @PostMapping("/save") public Reply save(@RequestBody Reply reply) { return replyService.save(reply); } @GetMapping("/find/{id}") public Reply findById(@PathVariable("id") Long id) { return replyService.findById(id); } @GetMapping("/find-all") public List<Reply> findAll() { return replyService.findAll(); } @DeleteMapping("/delete/{id}") public void delete(@PathVariable("id") Long id) { replyService.delete(id); } } ``` 7. 编写前端页面: 在src/main/resources/static目录下添加index.html文件,内容如下: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Web评论系统</title> </head> <body> <h1>Web评论系统</h1> <h2>用户管理</h2> <form id="user-form"> <label for="username">用户名:</label> <input type="text" id="username" name="username"> <br> <label for="password">密码:</label> <input type="password" id="password" name="password"> <br> <button type="button" onclick="saveUser()">保存</button> </form> <table id="user-table"> <thead> <tr> <th>id</th> <th>用户名</th> <th>密码</th> <th>操作</th> </tr> </thead> <tbody> </tbody> </table> <h2>评论管理</h2> <form id="comment-form"> <label for="content">评论内容:</label> <input type="text" id="content" name="content"> <br> <label for="user-id">用户ID:</label> <input type="text" id="user-id" name="user-id"> <br> <button type="button" onclick="saveComment()">保存</button> </form> <table id="comment-table"> <thead> <tr> <th>id</th> <th>评论内容</th> <th>用户ID</th> <th>操作</th> </tr> </thead> <tbody> </tbody> </table> <h2>子评论管理</h2> <form id="sub-comment-form"> <label for="content">子评论内容:</label> <input type="text" id="content" name="content"> <br> <label for="comment-id">评论ID:</label> <input type="text" id="comment-id" name="comment-id"> <br> <label for="user-id">用户ID:</label> <input type="text" id="user-id" name="user-id"> <br> <button type="button" onclick="saveSubComment()">保存</button> </form> <table id="sub-comment-table"> <thead> <tr> <th>id</th> <th>子评论内容</th> <th>评论ID</th> <th>用户ID</th> <th>操作</th> </tr> </thead> <tbody> </tbody> </table> <h2>回复管理</h2> <form id="reply-form"> <label for="content">回复内容:</label> <input type="text" id="content" name="content"> <br> <label for="sub-comment-id">子评论ID:</label> <input type="text" id="sub-comment-id" name="sub-comment-id"> <br> <label for="user-id">用户ID:</label> <input type="text" id="user-id" name="user-id"> <br> <button type="button" onclick="saveReply()">保存</button> </form> <table id="reply-table"> <thead> <tr> <th>id</th> <th>回复内容</th> <th>子评论ID</th> <th>用户ID</th> <th>操作</th> </tr> </thead> <tbody> </tbody> </table> <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> function saveUser() { $.ajax({ url: "/user/save", type: "POST", dataType: "json", contentType: "application/json;charset=utf-8", data: JSON.stringify({ username: $("#username").val(), password: $("#password").val() }), success: function (result) { alert("保存成功!"); $("#user-form")[0].reset(); loadUserTable(); } }); } function loadUserTable() { $.ajax({ url: "/user/find-all", type: "GET", dataType: "json", success: function (result) { var tbody = $("#user-table tbody"); tbody.empty(); $.each(result, function (index, item) { var tr = $("<tr></tr>"); tr.append($("<td></td>").text(item.id)); tr.append($("<td></td>").text(item.username)); tr.append($("<td></td>").text(item.password)); var td = $("<td></td>"); td.append($("<button type='button'>删除</button>").click(function () { deleteUser(item.id); })); tr.append(td); tbody.append(tr); }); } }); } function deleteUser(userId) { $.ajax({ url: "/user/delete/" + userId, type: "DELETE", success: function () { alert("删除成功!"); loadUserTable(); } }); } function saveComment() { $.ajax({ url: "/comment/save", type: "POST", dataType: "json", contentType: "application/json;charset=utf-8", data: JSON.stringify({ content: $("#content").val(), user: {id: $("#user-id").val()} }), success: function (result) { alert("保存成功!"); $("#comment-form")[0].reset(); loadCommentTable(); } }); } function loadCommentTable() { $.ajax({ url: "/comment/find-all", type: "GET", dataType: "json", success: function (result) { var tbody = $("#comment-table tbody"); tbody.empty(); $.each(result, function (index, item) { var tr = $("<tr></tr>"); tr.append($("<td></td>").text(item.id)); tr.append($("<td></td>").text(item.content)); tr.append($("<td></td>").text(item.user.id)); var td = $("<td></td>"); td.append($("<button type='button'>删除</button>").click(function () { deleteComment(item.id); })); tr.append(td); tbody.append(tr); }); } }); } function deleteComment(commentId) { $.ajax({ url: "/comment/delete/" + commentId, type: "DELETE", success: function () { alert("删除成功!"); loadCommentTable(); } }); } function saveSubComment() { $.ajax({ url: "/sub-comment/save", type: "POST", dataType: "json", contentType: "application/json;charset=utf-8", data: JSON.stringify({ content: $("#content").val(), comment: {id: $("#comment-id").val()}, user: {id: $("#user-id").val()} }), success: function (result) { alert("保存成功!"); $("#sub-comment-form")[0].reset(); loadSubCommentTable(); } }); } function loadSubCommentTable() { $.ajax({ url: "/sub-comment/find-all", type: "GET", dataType: "json", success: function (result) { var tbody = $("#sub-comment-table tbody"); tbody.empty(); $.each(result, function (index, item) { var tr = $("<tr></tr>"); tr.append($("<td></td>").text(item.id)); tr.append($("<td></td>").text(item.content)); tr.append($("<td></td>").text(item.comment.id)); tr.append($("<td></td>").text(item.user.id)); var td = $("<td></td>"); td.append($("<button type='button'>删除</button>").click(function () { deleteSubComment(item.id); })); tr.append(td); tbody.append(tr); }); } }); } function deleteSubComment(subCommentId) { $.
阅读全文

相关推荐

zip
# 基于SpringBoot的学习社区 #### 1、项目环境 SpringBoot 2.1.5.RELEASE Maven 3.5.2 Tomcat 8 jdk1.8 #### 2、技术栈 技术栈:Spring+Springmvc+Mybatis+SpringBoot+Mysql+Redis+Thymeleaf+Kafka+ElasticSearch+Quartz+Caffine #### 3、项目启动方式 配置mysql、七牛云等信息。 打开zookeeper、kafka、elasticsearch、redis。 F:\JavaTools\redis-2.8.9>redis-server.exe redis.windows.conf F:\JavaTools\kafka_2.12-2.3.0>bin\windows\zookeeper-server-start.bat config\zookeeper.properties F:\JavaTools\kafka_2.12-2.3.0>bin\windows\kafka-server-start.bat config\server.properties 打开es的bin目录,打开es.bat 开发环境使用application-dev,生产环境使用application-pro,生产环境需要重新配置文件目录地址 #### 4、提供的账号 普通用户:aaa  密码:123456   无权限 版主:bbb   密码:123456   置顶、加精权限 管理员:ccc   密码:123456   置顶、加精、删帖权限 ## 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

最新推荐

recommend-type

Springboot+SpringSecurity+JWT实现用户登录和权限认证示例

总的来说,Spring Boot + Spring Security + JWT的组合提供了一个强大且可扩展的用户认证和权限管理系统,适用于各种现代Web应用。在实际开发中,根据项目需求,可能还需要考虑如密码加密、刷新令牌、多因素认证等...
recommend-type

Spring框架web项目实战全代码分享

在本篇【Spring框架web项目实战全代码分享】中,我们将深入探讨如何使用Spring框架构建一个Java Web项目。首先,我们需要了解Spring的核心概念,它是一个轻量级的、全面的开源框架,主要用于简化企业级应用的开发。...
recommend-type

Spring boot+mybatis+thymeleaf 实现登录注册增删改查功能的示例代码

在本示例中,我们将探讨如何使用Spring Boot、MyBatis和Thymeleaf构建一个包含登录注册以及增删改查功能的应用。首先,我们从项目结构和依赖开始。 1. **项目创建与依赖管理**: 使用Maven创建一个Spring Boot项目...
recommend-type

Spring + Spring Boot + MyBatis + MongoDB的整合教程

如果需要实现定时器检测未激活用户并发送邮件,可以使用Spring Boot的定时任务`@Scheduled`注解,配合`@EnableScheduling`开启定时任务功能。 以上就是Spring、Spring Boot、MyBatis和MongoDB整合的基本流程。通过...
recommend-type

Spring Boot集成MyBatis实现通用Mapper的配置及使用

Spring Boot集成MyBatis并实现通用Mapper的配置与使用,是一项常见的后端开发任务,能够极大地提高开发效率。首先,我们需要理解MyBatis的核心特性,它是一个轻量级的持久层框架,允许开发者通过XML或注解的方式...
recommend-type

StarModAPI: StarMade 模组开发的Java API工具包

资源摘要信息:"StarModAPI: StarMade 模组 API是一个用于开发StarMade游戏模组的编程接口。StarMade是一款开放世界的太空建造游戏,玩家可以在游戏中自由探索、建造和战斗。该API为开发者提供了扩展和修改游戏机制的能力,使得他们能够创建自定义的游戏内容,例如新的星球类型、船只、武器以及各种游戏事件。 此API是基于Java语言开发的,因此开发者需要具备一定的Java编程基础。同时,由于文档中提到的先决条件是'8',这很可能指的是Java的版本要求,意味着开发者需要安装和配置Java 8或更高版本的开发环境。 API的使用通常需要遵循特定的许可协议,文档中提到的'在许可下获得'可能是指开发者需要遵守特定的授权协议才能合法地使用StarModAPI来创建模组。这些协议通常会规定如何分发和使用API以及由此产生的模组。 文件名称列表中的"StarModAPI-master"暗示这是一个包含了API所有源代码和文档的主版本控制仓库。在这个仓库中,开发者可以找到所有的API接口定义、示例代码、开发指南以及可能的API变更日志。'Master'通常指的是一条分支的名称,意味着该分支是项目的主要开发线,包含了最新的代码和更新。 开发者在使用StarModAPI时应该首先下载并解压文件,然后通过阅读文档和示例代码来了解如何集成和使用API。在编程实践中,开发者需要关注API的版本兼容性问题,确保自己编写的模组能够与StarMade游戏的当前版本兼容。此外,为了保证模组的质量,开发者应当进行充分的测试,包括单人游戏测试以及多人游戏环境下的测试,以确保模组在不同的使用场景下都能够稳定运行。 最后,由于StarModAPI是针对特定游戏的模组开发工具,开发者在创建模组时还需要熟悉StarMade游戏的内部机制和相关扩展机制。这通常涉及到游戏内部数据结构的理解、游戏逻辑的编程以及用户界面的定制等方面。通过深入学习和实践,开发者可以利用StarModAPI创建出丰富多样的游戏内容,为StarMade社区贡献自己的力量。" 由于题目要求必须输出大于1000字的内容,上述内容已经满足此要求。如果需要更加详细的信息或者有其他特定要求,请提供进一步的说明。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

R语言数据清洗术:Poisson分布下的异常值检测法

![R语言数据清洗术:Poisson分布下的异常值检测法](https://ucc.alicdn.com/images/user-upload-01/img_convert/a12c695f8b68033fc45008ede036b653.png?x-oss-process=image/resize,s_500,m_lfit) # 1. R语言与数据清洗概述 数据清洗作为数据分析的初级阶段,是确保后续分析质量的关键。在众多统计编程语言中,R语言因其强大的数据处理能力,成为了数据清洗的宠儿。本章将带您深入了解数据清洗的含义、重要性以及R语言在其中扮演的角色。 ## 1.1 数据清洗的重要性
recommend-type

设计一个简易的Python问答程序

设计一个简单的Python问答程序,我们可以使用基本的命令行交互,结合字典或者其他数据结构来存储常见问题及其对应的答案。下面是一个基础示例: ```python # 创建一个字典存储问题和答案 qa_database = { "你好": "你好!", "你是谁": "我是一个简单的Python问答程序。", "你会做什么": "我可以回答你关于Python的基础问题。", } def ask_question(): while True: user_input = input("请输入一个问题(输入'退出'结束):")
recommend-type

PHP疫情上报管理系统开发与数据库实现详解

资源摘要信息:"本资源是一个PHP疫情上报管理系统,包含了源码和数据库文件,文件编号为170948。该系统是为了适应疫情期间的上报管理需求而开发的,支持网络员用户和管理员两种角色进行数据的管理和上报。 管理员用户角色主要具备以下功能: 1. 登录:管理员账号通过直接在数据库中设置生成,无需进行注册操作。 2. 用户管理:管理员可以访问'用户管理'菜单,并操作'管理员'和'网络员用户'两个子菜单,执行增加、删除、修改、查询等操作。 3. 更多管理:通过点击'更多'菜单,管理员可以管理'评论列表'、'疫情情况'、'疫情上报管理'、'疫情分类管理'以及'疫情管理'等五个子菜单。这些菜单项允许对疫情信息进行增删改查,对网络员提交的疫情上报进行管理和对疫情管理进行审核。 网络员用户角色的主要功能是疫情管理,他们可以对疫情上报管理系统中的疫情信息进行增加、删除、修改和查询等操作。 系统的主要功能模块包括: - 用户管理:负责系统用户权限和信息的管理。 - 评论列表:管理与疫情相关的评论信息。 - 疫情情况:提供疫情相关数据和信息的展示。 - 疫情上报管理:处理网络员用户上报的疫情数据。 - 疫情分类管理:对疫情信息进行分类统计和管理。 - 疫情管理:对疫情信息进行全面的增删改查操作。 该系统采用面向对象的开发模式,软件开发和硬件架设都经过了细致的规划和实施,以满足实际使用中的各项需求,并且完善了软件架设和程序编码工作。系统后端数据库使用MySQL,这是目前广泛使用的开源数据库管理系统,提供了稳定的性能和数据存储能力。系统前端和后端的业务编码工作采用了Thinkphp框架结合PHP技术,并利用了Ajax技术进行异步数据交互,以提高用户体验和系统响应速度。整个系统功能齐全,能够满足疫情上报管理和信息发布的业务需求。" 【标签】:"java vue idea mybatis redis" 从标签来看,本资源虽然是一个PHP疫情上报管理系统,但提到了Java、Vue、Mybatis和Redis这些技术。这些技术标签可能是误标,或是在资源描述中提及的其他技术栈。在本系统中,主要使用的技术是PHP、ThinkPHP框架、MySQL数据库、Ajax技术。如果资源中确实涉及到Java、Vue等技术,可能是前后端分离的开发模式,或者系统中某些特定模块使用了这些技术。 【压缩包子文件的文件名称列表】: CS268000_*** 此列表中只提供了单一文件名,没有提供详细文件列表,无法确定具体包含哪些文件和资源,但假设它可能包含了系统的源代码、数据库文件、配置文件等必要组件。