91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

實現SpringBoot2.3整合redis緩存自定義序列化的方法

發布時間:2020-08-13 11:23:43 來源:億速云 閱讀:445 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關實現SpringBoot2.3整合redis緩存自定義序列化的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1.引言

我們使用redis作為緩存中間件時,當我們第一次查詢數據的時候,是去數據庫查詢,然后查到的數據封裝到實體類中,實體類會被序列化存入緩存中,當第二次查數據時,會直接去緩存中查找被序列化的數據,然后反序列化被我們獲取。我們在緩存中看到的序列化數據不直觀,如果想看到類似json的數據格式,就需要自定義序列化規則。

2.整合redis

pom.xml:

<!--引入redis-->
    <dependency>
      <groupId>org.springframework.data</groupId>
      <artifactId>spring-data-redis</artifactId>
      <version>2.3.0.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>redis.clients</groupId>
      <artifactId>jedis</artifactId>
    </dependency>

application.yml:

spring:
 redis:
  host: 192.168.85.130
  port: 6379
  database: 0

springboot主配置類要加上@EnableCaching注解

3.自定義序列化

@Configuration
public class MyRedisConfig {
  @Bean
  public RedisTemplate<Object, Object> empRedisTemplate(RedisConnectionFactory redisConnectionFactory)throws UnknownHostException {
    RedisTemplate<Object,Object> template = new RedisTemplate<>();
    template.setConnectionFactory(redisConnectionFactory);
    Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<Object>(Object.class);
    template.setDefaultSerializer(serializer);
    return template;
  }

  @Bean
  public CacheManager cacheManager(RedisConnectionFactory factory){
    RedisCacheConfiguration cacheConfiguration = RedisCacheConfiguration.defaultCacheConfig()
        .entryTtl(Duration.ofDays(1))
        .disableCachingNullValues()
        .serializeKeysWith(RedisSerializationContext.SerializationPair
            .fromSerializer(new StringRedisSerializer()))
        .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer()));
    return RedisCacheManager.builder(factory).cacheDefaults(cacheConfiguration).build();}
}

4.測試

DeptService:

@Service
public class DeptService {
  @Autowired
  DepartmentMapper departmentMapper;
  @Cacheable(value = "dept")
  public Department findById(Integer id){
  System.out.println("查詢"+id+"號部門");
    Department department = departmentMapper.getDeptById(id);
    return department;
  }
}

EmployeeService:

@Service
public class EmployeeService {
  @Autowired
  EmployeeMapper employeeMapper;
 	@Cacheable(value = "emp")
  public Employee findById(Integer id){
    System.out.println("查詢"+id+"號員工");
    Employee employee = employeeMapper.getEmpById(id);
    return employee;
  }
}

@Cacheable(value = “dept”) :該注解在方法上,方法傳入參數默認為key值,方法返回值為value值,注解的參數value = "dept"是緩存的名子

結果:

實現SpringBoot2.3整合redis緩存自定義序列化的方法

關于實現SpringBoot2.3整合redis緩存自定義序列化的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绵竹市| 常宁市| 营山县| 新竹市| 读书| 工布江达县| 吉安县| 体育| 泰宁县| 满洲里市| 阿图什市| 南溪县| 深水埗区| 漠河县| 小金县| 东台市| 青海省| 凌源市| 正阳县| 乃东县| 敦煌市| 行唐县| 深州市| 准格尔旗| 济南市| 阳谷县| 信阳市| 衡阳县| 祁门县| 上犹县| 定襄县| 山丹县| 仁布县| 沁阳市| 崇明县| 丹寨县| 饶河县| 崇左市| 孟村| 无锡市| 西平县|