上次说过了Redis在SpringBoot中的配置及使用,但如果电脑或者服务器没有安装或打开Redis服务器,那么访问接口就会报:
There was an unexpected error (type=Internal Server Error, status=500).Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
的错误消息;
这次我们就来看看Window下关于Redis客户端的安装:
1: 下载Redis客户端安装包:
Redis下载地址:
2: 下载成功后,解压就可以啦;
然后打开命令行,定位到解压后的目录中,然后运行命令:
#1: 在cmd下找到redis安装文件的目录: cd C:\PortableSoft\Redis\redis#2: 执行启动操作: redis-server.exe redis.windows.conf#3: 启动成功后不要关闭这个cmd;
当命令行变为:
就启动成功,在次访问项目接口,就可以访问成功;
一款Redis可视化工具:
Redis官网:
参考文档: