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

溫馨提示×

溫馨提示×

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

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

springboot如何整合Redis

發布時間:2021-12-16 17:16:36 來源:億速云 閱讀:192 作者:小新 欄目:大數據

這篇文章主要介紹springboot如何整合Redis,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

引入依賴:

在pom文件中添加redis依賴:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

配置數據源

spring.redis.host=localhost
spring.redis.port=6379
#spring.redis.password=
spring.redis.database=1
spring.redis.pool.max-active=8
spring.redis.pool.max-wait=-1
spring.redis.pool.max-idle=500
spring.redis.pool.min-idle=0
spring.redis.timeout=0

如果你的redis有密碼,配置下即可。經過上述兩步的操作,你可以訪問redis數據了。

數據訪問層dao

通過redisTemplate來訪問redis.

@Repository
public class RedisDao {

    @Autowired
    private StringRedisTemplate template;

    public  void setKey(String key,String value){
        ValueOperations<String, String> ops = template.opsForValue();
        ops.set(key,value,1, TimeUnit.MINUTES);//1分鐘過期
    }

    public String getValue(String key){
        ValueOperations<String, String> ops = this.template.opsForValue();
        return ops.get(key);
    }
}

單元測試

@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringbootRedisApplicationTests {

    public static Logger logger= LoggerFactory.getLogger(SpringbootRedisApplicationTests.class);
    @Test
    public void contextLoads() {
    }

    @Autowired
    RedisDao redisDao;
    @Test
    public void testRedis(){
        redisDao.setKey("name","forezp");
        redisDao.setKey("age","11");
        logger.info(redisDao.getValue("name"));
        logger.info(redisDao.getValue("age"));
    }
}

啟動單元測試,你發現控制臺打印了:

forezp

11

以上是“springboot如何整合Redis”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

彩票| 闽清县| 鸡东县| 高平市| 赣榆县| 徐州市| 开鲁县| 同仁县| 崇义县| 克什克腾旗| 三穗县| 峡江县| 伊宁县| 南丰县| 平南县| 乐清市| 许昌县| 屏山县| 宽城| 卢湾区| 石首市| 贵港市| 冕宁县| 安康市| 出国| 兴海县| 千阳县| 罗甸县| 长垣县| 衡阳市| 青岛市| 芦溪县| 乌审旗| 景宁| 封丘县| 汝阳县| 永吉县| 股票| 滨州市| 普洱| 卢氏县|