In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-19 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.