spring缓存机制-@CachePut的用法(四)

2023-12-14 18:38

本文主要是介绍spring缓存机制-@CachePut的用法(四),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

spring是一个轻量级开源框架,以IoC(Inverse of Control:控制反转)和AOP(Aspect Oriented Programming:面向切面编程)为内核,
兼具功能强大的的原生展现层spring mvc,原生持久层spring jdbc和原生业务层等技术,并且以海纳百川的胸怀整合了开源世界里众多
著名的第三方框架和类库,已经逐渐成为世界上使用最多的JavaEE企业级应用开源框架.
在使用spring缓存技术过程中,有时候我们既希望方法被调用,同时又希望结果被缓存.例如记录日志,调用接口等,
在这种情况下需要用到@CachePut 注释.
1.通过maven构建项目,直接看pom.xml文件(略:参考相关博客)
2.创建service,dao和model,并将spring缓存加在service层,直接看代码UserService,UserServiceImpl,UserDao,UserDaoImpl和User.(略:参考相关博客)

  在UserServiceImpl代码中通过@CachePut既保证方法被调用,同时又保证结果被缓存.

<span style="font-size:12px;">package com.ilucky.spring.cache.service.impl;import java.util.Map;import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.CachePut;
import org.springframework.cache.annotation.Cacheable;import com.ilucky.spring.cache.dao.UserDao;
import com.ilucky.spring.cache.model.User;
import com.ilucky.spring.cache.service.UserService;/*** @author IluckySi* @date 20140613*/
public class UserServiceImpl implements UserService {private UserDao userDao;/*** JVM加载spring配置文件时, 通过set方法注入本类的依赖.* @param userDao*/public void setUserDao(UserDao userDao) {this.userDao = userDao;}/*** 对数据进行增删改时清空缓存, 查询时使用缓存, 其中value为缓存区,* allEntries表示清空缓存中所有的数据, 使用#"user.id + '方法名'"做为key.*/@Override@CacheEvict(value = "data", key = "#id + 'add'")  public void add(User user) {System.out.println("UserService: method- add(User user)" );userDao.add(user);}@Override@CacheEvict(value = "data", key = "#id + 'delete'")  public void delete(String id) {System.out.println("UserService: method-delete(String id)" );userDao.delete(id);}@Override@CacheEvict(value = "data", key = "#user.id+ 'update'")  public void update(User user) {System.out.println("UserService: method-update(User user)" );userDao.update(user);}@Override@Cacheable(value = "data", condition = "#id.length() > 5")   public User find(String id) {System.out.println("UserService: method-find(String id)" );return userDao.find(id);}@Override//@CachePut(value = "data")  //@Cacheable(value = "data")  @Cacheable(value = "data")  public Map<String, User> getAll() {System.out.println("UserService: method-getAll()" );return userDao.getAll();}
}
</span>
3.创建spring配置文件,配置spring自己的缓存管理器和bean之间的依赖关系,直接看代码spring-cahce.xml.(略:参考相关博客)

4.最后通过测试类测试spring缓存机制是否生效,直接看代码MainTest.

<span style="font-size:12px;">package com.ilucky.spring.cache;import java.util.Map;
import java.util.Map.Entry;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.ilucky.spring.cache.model.User;
import com.ilucky.spring.cache.service.UserService;/*** @author IluckySi* @date 20140614* 测试spring缓存机制是否生效.*/
public class MainTest {public static void main(String[] args) {//加载ClassPath路径下的spring配置文件, 并获取service bean.ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring-cache.xml");  UserService userService = context.getBean("userService", UserService.class); System.out.println("service bean: " + userService);//添加三个用户, 然后查询并输出.userService.add(new User("1", "Ilucky1", "pwd1"));userService.add(new User("2", "Ilucky2", "pwd2"));userService.add(new User("3", "Ilucky3", "pwd3"));Map<String, User> map = userService.getAll();for(Entry<String, User> entry : map.entrySet()) {System.out.println(entry.getValue());}//验证@Cacheable和CachePut的区别, CachePut既保证方法被调用,同时保证结果被缓存.Map<String, User> map2 = userService.getAll();for(Entry<String, User> entry : map2.entrySet()) {System.out.println(entry.getValue());}}
}
/**
spring缓存分为两种:方法和数据,如果方法被清除了,需要重新从数据库获取数据放入缓存,另外只有方法加入了缓存才可以获取缓存中的数据.
@Cacheable(value = "data")  
public Map<String, User> getAll() {
输出结果:
service bean: com.ilucky.spring.cache.service.impl.UserServiceImpl@17ec9f7
UserService: method- add(User user)
UserDao method- add(User user)
UserService: method- add(User user)
UserDao method- add(User user)
UserService: method- add(User user)
UserDao method- add(User user)
UserService: method-getAll()
UserDao method- getAll()
记录日志--调用接口等操作!
3-Ilucky3-pwd3
2-Ilucky2-pwd2
1-Ilucky1-pwd1
3-Ilucky3-pwd3
2-Ilucky2-pwd2
1-Ilucky1-pwd1@CachePut(value = "data")  
service bean: com.ilucky.spring.cache.service.impl.UserServiceImpl@fd918a
UserService: method- add(User user)
UserDao method- add(User user)
UserService: method- add(User user)
UserDao method- add(User user)
UserService: method- add(User user)
UserDao method- add(User user)
UserService: method-getAll()
UserDao method- getAll()
记录日志--调用接口等操作!
3-Ilucky3-pwd3
2-Ilucky2-pwd2
1-Ilucky1-pwd1
UserService: method-getAll()
UserDao method- getAll()
记录日志--调用接口等操作!
3-Ilucky3-pwd3
2-Ilucky2-pwd2
1-Ilucky1-pwd1
*/
</span>
  在测试代码中通过ClassPathXmlApplicationContext类加载spring配置文件,因为此maven项目是jar项目,并且在maven中约定资源
  放在src/main/resources目录,所以spring配置文件需要放在src/main/resources目录下.
注意:spring缓存分为两种:方法和数据,如果方法被清除了,需要重新从数据库获取数据放入缓存,另外只有方法加入了缓存才可以获取缓存中的数据.




这篇关于spring缓存机制-@CachePut的用法(四)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/493604

相关文章

springboot健康检查监控全过程

《springboot健康检查监控全过程》文章介绍了SpringBoot如何使用Actuator和Micrometer进行健康检查和监控,通过配置和自定义健康指示器,开发者可以实时监控应用组件的状态,... 目录1. 引言重要性2. 配置Spring Boot ActuatorSpring Boot Act

使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)

《使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)》在现代软件开发中,处理JSON数据是一项非常常见的任务,无论是从API接口获取数据,还是将数据存储为JSON格式,解析... 目录1. 背景介绍1.1 jsON简介1.2 实际案例2. 准备工作2.1 环境搭建2.1.1 添加

Java实现任务管理器性能网络监控数据的方法详解

《Java实现任务管理器性能网络监控数据的方法详解》在现代操作系统中,任务管理器是一个非常重要的工具,用于监控和管理计算机的运行状态,包括CPU使用率、内存占用等,对于开发者和系统管理员来说,了解这些... 目录引言一、背景知识二、准备工作1. Maven依赖2. Gradle依赖三、代码实现四、代码详解五

java如何分布式锁实现和选型

《java如何分布式锁实现和选型》文章介绍了分布式锁的重要性以及在分布式系统中常见的问题和需求,它详细阐述了如何使用分布式锁来确保数据的一致性和系统的高可用性,文章还提供了基于数据库、Redis和Zo... 目录引言:分布式锁的重要性与分布式系统中的常见问题和需求分布式锁的重要性分布式系统中常见的问题和需求

SpringBoot基于MyBatis-Plus实现Lambda Query查询的示例代码

《SpringBoot基于MyBatis-Plus实现LambdaQuery查询的示例代码》MyBatis-Plus是MyBatis的增强工具,简化了数据库操作,并提高了开发效率,它提供了多种查询方... 目录引言基础环境配置依赖配置(Maven)application.yml 配置表结构设计demo_st

在Ubuntu上部署SpringBoot应用的操作步骤

《在Ubuntu上部署SpringBoot应用的操作步骤》随着云计算和容器化技术的普及,Linux服务器已成为部署Web应用程序的主流平台之一,Java作为一种跨平台的编程语言,具有广泛的应用场景,本... 目录一、部署准备二、安装 Java 环境1. 安装 JDK2. 验证 Java 安装三、安装 mys

Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单

《Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单》:本文主要介绍Springboot的ThreadPoolTaskScheduler线... 目录ThreadPoolTaskScheduler线程池实现15分钟不操作自动取消订单概要1,创建订单后

JAVA中整型数组、字符串数组、整型数和字符串 的创建与转换的方法

《JAVA中整型数组、字符串数组、整型数和字符串的创建与转换的方法》本文介绍了Java中字符串、字符数组和整型数组的创建方法,以及它们之间的转换方法,还详细讲解了字符串中的一些常用方法,如index... 目录一、字符串、字符数组和整型数组的创建1、字符串的创建方法1.1 通过引用字符数组来创建字符串1.2

Redis与缓存解读

《Redis与缓存解读》文章介绍了Redis作为缓存层的优势和缺点,并分析了六种缓存更新策略,包括超时剔除、先删缓存再更新数据库、旁路缓存、先更新数据库再删缓存、先更新数据库再更新缓存、读写穿透和异步... 目录缓存缓存优缺点缓存更新策略超时剔除先删缓存再更新数据库旁路缓存(先更新数据库,再删缓存)先更新数

el-select下拉选择缓存的实现

《el-select下拉选择缓存的实现》本文主要介绍了在使用el-select实现下拉选择缓存时遇到的问题及解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的... 目录项目场景:问题描述解决方案:项目场景:从左侧列表中选取字段填入右侧下拉多选框,用户可以对右侧