SpringBoot整合Mybatis-Plus实现浏览数据新增、Redis进行热度排名

news/2024/11/28 14:42:22/

在这里插入图片描述

在开发Web项目时,常用到的技术就是SpringBoot和Mybatis-Plus。本文将介绍如何使用SpringBoot整合Mybatis-Plus实现一个浏览数据新增功能,以及如何用Redis进行热度排名统计,最后用Vue进行数据渲染。

一、SpringBoot整合Mybatis-Plus

1. 新建SpringBoot项目,并在Pom.xml中添加Mybatis-Plus的依赖。

<dependencies><!-- Mybatis-Plus--><dependency><groupId>com.baomidou.mybatisplus</groupId><artifactId>mybatis-plus-boot-starter</artifactId><version>3.3.2</version></dependency><!--其他依赖请自行添加-->
</dependencies>

2. 配置Mybatis-Plus

在application.yml中配置:

spring:datasource:driver-class-name: com.mysql.cj.jdbc.Driverurl: jdbc:mysql://localhost:3306/mybatis_plus?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghaiusername: rootpassword: rootjackson:date-format: yyyy-MM-dd HH:mm:ss
mybatis-plus:mapper-locations: classpath:mapper/*.xmltype-aliases-package: com.example.demo.entity

3. 定义实体类和Mapper

以一个User实体类为例:

@Data
public class User {private Long id;private String name;private Integer age;private String email;private Date createTime;private Date updateTime;
}public interface UserMapper extends BaseMapper<User> {
}

其中,UserMapper继承了Mybatis-Plus提供的BaseMapper接口,即基本的CRUD操作都被封装好了。

4. 新建UserService

@Service
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {}

这里我们使用了Mybatis-Plus提供的ServiceImpl来实现UserService,继承了UserMapper后,ServiceImpl的默认实现就可以完成大部分的CRUD操作。

二、浏览数据新增功能

1. 在User实体内增加浏览次数的变量

@Data
public class User {private Long id;private String name;private Integer age;private String email;private Date createTime;private Date updateTime;private Integer visit_count;   //新增浏览次数变量
}

2. 新增访问接口

@RestController
@RequestMapping("/user")
public class UserController {@Autowiredprivate UserService userService;@GetMapping("/{id}")public User findById(@PathVariable("id")Long id){User user = userService.getById(id);Integer visit_count = user.getVisit_count();user.setVisit_count(visit_count+1);userService.updateById(user);return user;}
}

代码解释:我们在访问查询接口时,通过向访问的用户浏览次数变量增加1来实现访问次数的记录。并且使用Mybatis-Plus的updateById方法来更新数据库中对应的记录。

三、Redis热度排名统计

1. 引入Redis依赖

<dependencies><!-- Redis --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency><!--其他依赖请自行添加-->
</dependencies>

2. Redis配置

spring:redis:host: 127.0.0.1port: 6379database: 0password:lettuce:pool:max-active: 400max-wait: -1max-idle: 20min-idle: 5

3. 编写Redis存储的Javabean

@Data
@AllArgsConstructor
@NoArgsConstructor
public class RankingData {private Long id;private Integer count;
}

4. 编写更新Redis中排名数据的方法

@Service
public class RedisService {@Autowiredprivate RedisTemplate redisTemplate;// 更新Redis中的排名数据public void updateRanking(Long id, Integer count){redisTemplate.opsForZSet().add("ranking", new RankingData(id, count), (double)count);}
}

代码解释:我们使用Redis的有序集合来存储排名数据,使用ZSet中的add()方法将排名数据存储到Redis中。其中,数据的分数为count,以便之后进行排序。

5. 在接口中调用修改排名数据的方法

@RestController
@RequestMapping("/user")
public class UserController {@Autowiredprivate UserService userService;@Autowiredprivate RedisService redisService;@GetMapping("/{id}")public User findById(@PathVariable("id")Long id){User user = userService.getById(id);Integer visit_count = user.getVisit_count();user.setVisit_count(visit_count+1);userService.updateById(user);// 更新Redis排名数据redisService.updateRanking(id, user.getVisit_count());return user;}
}

代码解释:在用户访问接口更新完访问次数后,调用RedisService中的更新排名数据的方法。

四、使用Vue进行数据渲染

1. 在前端实现异步请求

<template><div><ul v-for="(item, index) in userList" :key="index"><li>编号:{{item.id}} , 姓名:{{item.name}} , 浏览次数:{{item.visit_count}}</li></ul></div>
</template><script>
export default {data() {return {//用户数据userList: []};},async mounted() { //异步请求axios.get("/user/list").then((res) => {this.userList = res.data; // 改变userList的值});},
};
</script>

代码解释:我们在Vue的mounted()钩子中使用axios向后端发送异步请求获取用户数据。

2. 启动项目,打开浏览器查看效果。

至此,一个使用SpringBoot整合Mybatis-Plus实现浏览数据新增功能、使用Redis进行热度排名、使用Vue进行数据渲染的完整项目就实现了。

总结

  1. Mybatis-Plus可以大大简化CRUD操作,是开发Web项目的好帮手。
  2. Redis的数据结构灵活,是非常好的缓存工具和快速存取的计数器功能的选择。
  3. Vue作为前端数据渲染的工具,非常方便易用。

希望此篇文章能够对开发者有所帮助。


http://www.ppmy.cn/news/62833.html

相关文章

软件测试220道试题及答案

请点击↑关注、收藏&#xff0c;本博客免费为你获取精彩知识分享&#xff01;有惊喜哟&#xff01;&#xff01; I 卷 一、单项选择题&#xff1a; 1. &#xff08;B &#xff09;可以作为软件测试结束的标志。 A.使用了特定的测试用例 B.错误强度曲线下降到预定的水平 …

Node.js 是什么?

简介 Node.js入门指南&#xff0c;服务器端JavaScript运行时环境。Node.js是在Google Chrome V8 JavaScript引擎的基础上构建的&#xff0c;它主要用于创建web服务器&#xff0c;但并不局限于此。 实际上Node.js 是把运行在浏览器中的js引擎抽离处理&#xff0c;进行再次封装…

( “图“ 之 二分图 ) 785. 判断二分图 ——【Leetcode每日一题】

❓785. 判断二分图 难度&#xff1a;中等 存在一个 无向图 &#xff0c;图中有 n 个节点。其中每个节点都有一个介于 0 到 n - 1 之间的唯一编号。给你一个二维数组 graph &#xff0c;其中 graph[u] 是一个节点数组&#xff0c;由节点 u 的邻接节点组成。形式上&#xff0c;…

Mybatis 一对多查询列表属性处理

Mybatis 一对多查询列表属性处理 一、说明1.<collection>标签属性说明2. 示例代码 二、平铺查询三、 嵌套查询&#xff08;Nested Select for Collection&#xff09;3.1 外键查询3.2 select传入多个参数 一、说明 1.<collection>标签属性说明 property&#xff1…

Linux挂载新磁盘到根目录

添加磁盘到需要挂载的机器上 lsblk查看硬盘挂载情况&#xff0c;sdb,sdc为我新挂载的磁盘 fdisk -l查看挂载之前的分区情况 为新硬盘创建分区 fdisk /dev/sdb 终端会提示&#xff1a; Command &#xff08;m for help&#xff09;&#xff1a;输入&#xff1a;n 依次输入p…

10 KVM虚拟机配置-虚拟CPU和虚拟内存

文章目录 10 KVM虚拟机配置-虚拟CPU和虚拟内存10.1 概述10.2 元素介绍10.3 配置示例 10 KVM虚拟机配置-虚拟CPU和虚拟内存 10.1 概述 本节介绍虚拟CPU和虚拟内存的常用配置。 10.2 元素介绍 vcpu&#xff1a;虚拟处理器的个数。 memory&#xff1a;虚拟内存的大小。 属性un…

第四十章 Unity 按钮 (Button) UI

本章节我们介绍一下按钮UI。首先&#xff0c;我们创建一个新的场景“SampleScene3.unity”。然后&#xff0c;在菜单栏中点击“GameObject”->“UI”->“Button”&#xff0c;截图如下 我们选中刚刚创建的Button&#xff0c;然后查看它的Inspector检视面板&#xff0c;如…

【数据结构】二叉树(详细)

二叉树 1.树1.1定义1.2基本术语1.3树形结构和线性结构1.4树的存储结构1.4.1双亲表示法1.4.2孩子兄弟表示法 2.二叉树2.1定义2.2特殊二叉树2.3性质2.4存储结构2.4.1顺序存储2.4.2链式存储结构 3.二叉树的基本操作3.1前序遍历&#xff08;先序遍历&#xff09;3.2中序遍历3.3后序…