Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem that springdataredis storage key found that key is\ xAC\ xED\ x00\ x05t\ x00\ x04

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to solve the problem of finding the key value of springdataredis storage key value as\xAC\xED\x00\x05t\x00\x04". The explanation content in this article is simple and clear, easy to learn and understand. Please follow the idea of Xiaobian slowly and deeply to study and learn "how to solve the problem of finding the key value of springdataredis storage key value as\xAC\xED\x00\x05t\x00\x04" together!

redisTemplate default serialization method is jdkSerializable, StringRedisTemplate default serialization method is StringRedisSerializer, modify default serialization method

/** * jdkSerializable used by redisTemplate serialization, stores binary bytecode, so customize serialization class * @param redisConnectionFactory * @return */@Beanpublic RedisTemplate redisTemplate(RedisConnectionFactory redisConnectionFactory) { RedisTemplate redisTemplate = new RedisTemplate(); redisTemplate.setConnectionFactory(redisConnectionFactory); //Replace default serialization with Jackson2JsonRedisSerialize Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class); ObjectMapper objectMapper = new ObjectMapper(); objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL); jackson2JsonRedisSerializer.setObjectMapper(objectMapper); //Set serialization rules for value and key redisTemplate.setValueSerializer(jackson2JsonRedisSerializer); redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.afterPropertiesSet(); return redisTemplate;} Thank you for your reading. The above is the content of "How to solve the problem of finding the key value of springdataredis storage key as\xAC\xED\x00\x05t\x00\x04." After studying this article, I believe everyone has a deeper understanding of how to solve the problem of finding the key value of springdataredis storage key as\xAC\xED\x00\x05t\x00\x04. The specific use situation still needs to be verified by practice. Here is, Xiaobian will push more articles related to knowledge points for everyone, welcome to pay attention!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report