In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
This article will explain in detail how to use redis in spring. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.
How to use redis in spring?
Using Redis in Spring
Jedis is used to manipulate Redis in Java. First, add related dependencies to pom.xml:
Org.springframework.dataspring-data-redis1.6.0.RELEASEredis.clientsjedis2.7.3 org.apache.commons commons-pool2 2.4.2
Then implement the configuration class:
Package com.ehelp.util; import org.springframework.cache.CacheManager;import org.springframework.cache.annotation.CachingConfigurerSupport;import org.springframework.cache.annotation.EnableCaching;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.data.redis.cache.RedisCacheManager;import org.springframework.data.redis.connection.RedisConnectionFactory;import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;import org.springframework.data.redis.core.RedisTemplate @ Configuration@EnableCachingpublic class RedisCacheConfig extends CachingConfigurerSupport {@ Beanpublic JedisConnectionFactory redisConnectionactory () {JedisConnectionFactory redisConnectionFactory = new JedisConnectionFactory (); redisConnectionFactory.setHostName ("localhost"); redisConnectionFactory.setPort (6379); return redisConnectionFactory;} @ Beanpublic RedisTemplate redisTemplate (RedisConnectionFactory cf) {RedisTemplate redisTemplate = new RedisTemplate (); redisTemplate.setConnectionFactory (cf); return redisTemplate;} @ Beanpublic CacheManager cacheManager (RedisTemplate redisTemplate) {RedisCacheManager cacheManger = new RedisCacheManager (redisTemplate); cacheManger.setDefaultExpiration (5); / / cache expiration time return cacheManger;}}
Note:
Set the Cache expiration time to be appropriate, if it is too long, it will be valid for a long time, and if it is too short, you will not see the test results. 5-20 seconds is recommended.
Finally, you can implement the cache by directly using annotations on the methods that need to be added:
On the use of redis in spring to share here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.