文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringBoot与SpringCache概念是什么

2023-06-29 03:53

关注

这篇文章给大家分享的是有关SpringBoot与SpringCache概念是什么的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

1.SpringCache的概念

首先我们知道jpa,jdbc这些东西都是一些规范,比如jdbc,要要连接到数据库,都是需要用到数据库连接,预处理,结果集这三个对象,无论是连接到mysql还是oracle都是需要用到这个三个对象的,这是一种规范,而SpringCache是一种作为缓存的规范,具体实现有redis,EhCahe等

2.SpringCache用法(redis版)

2.1 .SpringCache基本用法

pom.xml

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-parent</artifactId>        <version>2.6.3</version>        <relativePath/> <!-- lookup parent from repository -->    </parent>    <groupId>com.yl</groupId>    <artifactId>cache_redis</artifactId>    <version>0.0.1-SNAPSHOT</version>    <name>cache_redis</name>    <description>Demo project for Spring Boot</description>    <properties>        <java.version>11</java.version>    </properties>    <dependencies>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-cache</artifactId>        </dependency>            <artifactId>spring-boot-starter-data-redis</artifactId>            <artifactId>spring-boot-starter-web</artifactId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>    </dependencies>    <build>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>            </plugin>        </plugins>    </build></project>

application.properties

# redis的配置spring.redis.host=192.168.244.135spring.redis.port=6379spring.redis.password=root123

实体类

package com.yl.cache_redis.domain;import java.io.Serializable;public class User implements Serializable {    private Integer id;    private String username;    private String password;    public Integer getId() {        return id;    }    public void setId(Integer id) {        this.id = id;    }    public String getUsername() {        return username;    }    public void setUsername(String username) {        this.username = username;    }    public String getPassword() {        return password;    }    public void setPassword(String password) {        this.password = password;    }    @Override    public String toString() {        return "User{" +                "id=" + id +                ", username='" + username + '\'' +                ", password='" + password + '\'' +                '}';    }}

service

package com.yl.cache_redis;import com.yl.cache_redis.domain.User;import org.springframework.cache.annotation.Cacheable;import org.springframework.stereotype.Service;@Servicepublic class UserService {    @Cacheable(cacheNames = "u1") //这个注解作用就是将方法的返回值存到缓存中    public User getUserById(Integer id) {        System.out.println("getUserById:" + id);        User user = new User();        user.setId(id);        user.setUsername("root");        user.setPassword("root");        return user;    }}

主程序,加上开启缓存的注解

package com.yl.cache_redis;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cache.annotation.EnableCaching;@SpringBootApplication@EnableCaching //开启缓存功能public class CacheRedisApplication {    public static void main(String[] args) {        SpringApplication.run(CacheRedisApplication.class, args);    }}

测试

1)userservice没加@Cacheable注解时

SpringBoot与SpringCache概念是什么

2)userservice加@Cacheable注解后,发现sevice中的方法只调用了一次

SpringBoot与SpringCache概念是什么

3)在redis中也可以看到缓存中有数据,key为定义好的cacheNames+::+方法的参数

SpringBoot与SpringCache概念是什么

2.2 .SpringCache自定义缓存key

SpringCache默认使用cacheNames和方法中的参数结合组成key的,那么如果有多个参数呢?它又是如何组成key的呢?我们可以指定key吗?

SpringBoot与SpringCache概念是什么

SpringBoot与SpringCache概念是什么

SpringBoot与SpringCache概念是什么

如何自定义key呢?

1)自定义key

package com.yl.cache_redis;import org.springframework.cache.interceptor.KeyGenerator;import org.springframework.stereotype.Component;import java.lang.reflect.Method;import java.util.Arrays;@Componentpublic class MyKeyGenerator implements KeyGenerator {    @Override    public Object generate(Object target, Method method, Object... params) {        return target.toString() + ":" + method.getName() + ":" + Arrays.toString(params);    }}

2)测试

SpringBoot与SpringCache概念是什么

SpringBoot与SpringCache概念是什么

SpringBoot与SpringCache概念是什么

2.3 .SpringCache更新缓存

使用@CachePut注解来更新,注意:@CachePut中的key要和@Cacheable中的key一样,否则更新不了!

SpringBoot与SpringCache概念是什么

SpringBoot与SpringCache概念是什么

2.4 .SpringCache清空缓存

使用@CacheEvict注解,主要key和要@Cacheable中的key一致

SpringBoot与SpringCache概念是什么

测试

SpringBoot与SpringCache概念是什么

2.5 .SpringCache其他用法

@Caching注解,可以组合多个注解

SpringBoot与SpringCache概念是什么

@CacheConfig注解

SpringBoot与SpringCache概念是什么

3.SpringCache用法(EhCache版)

pom.xml

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-parent</artifactId>        <version>2.6.3</version>        <relativePath/> <!-- lookup parent from repository -->    </parent>    <groupId>com.yl</groupId>    <artifactId>ehcache</artifactId>    <version>0.0.1-SNAPSHOT</version>    <name>ehcache</name>    <description>Demo project for Spring Boot</description>    <properties>        <java.version>11</java.version>    </properties>    <dependencies>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-cache</artifactId>        </dependency>            <artifactId>spring-boot-starter-web</artifactId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>            <groupId>net.sf.ehcache</groupId>            <artifactId>ehcache</artifactId>            <version>2.10.6</version>    </dependencies>    <build>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>            </plugin>        </plugins>    </build></project>

实体类

package com.yl.ehcache.model;import java.io.Serializable;public class User implements Serializable {    private Integer id;    private String username;    private String password;    public Integer getId() {        return id;    }    public void setId(Integer id) {        this.id = id;    }    public String getUsername() {        return username;    }    public void setUsername(String username) {        this.username = username;    }    public String getPassword() {        return password;    }    public void setPassword(String password) {        this.password = password;    }    @Override    public String toString() {        return "User{" +                "id=" + id +                ", username='" + username + '\'' +                ", password='" + password + '\'' +                '}';    }}

service

package com.yl.ehcache.service;import com.yl.ehcache.model.User;import org.springframework.cache.annotation.CacheEvict;import org.springframework.cache.annotation.Cacheable;import org.springframework.stereotype.Service;@Servicepublic class UserService {    @Cacheable(cacheNames = "user")    public User getUserById(Integer id) {        System.out.println("getUserById()...");        User user = new User();        user.setId(id);        user.setUsername("root");        user.setPassword("root");        return user;    }    @CacheEvict(cacheNames = "user")    public void delete(Integer id) {        System.out.println("delete");}

主程序

package com.yl.ehcache;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cache.annotation.EnableCaching;@SpringBootApplication@EnableCachingpublic class EhcacheApplication {    public static void main(String[] args) {        SpringApplication.run(EhcacheApplication.class, args);    }}

ehcache.xml

<ehcache>    <diskStore path="java.io.tmpdir/shiro-spring-sample"/>    <defaultCache            maxElementsInMemory = "1000"            eternal = "false"            timeToIdleSeconds = "120"            timeToLiveSeconds = "120"            overflowToDisk = "false"            diskPersistent = "false"            diskExpiryThreadIntervalSeconds = "120"/>    <cache name = "user"           maxElementsInMemory = "1000"           eternal = "false"           overflowToDisk = "true"           diskPersistent = "true"           diskExpiryThreadIntervalSeconds = "600"/></ehcache>

测试

SpringBoot与SpringCache概念是什么

感谢各位的阅读!关于“SpringBoot与SpringCache概念是什么”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯