您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringBoot怎么監控Redis中某個Key的變化,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
當前內容主要為本人學習和基本測試,主要為監控redis中的某個key的變化(感覺網上的都不好,所以自己看Spring源碼直接寫一個監聽器)
個人參考:
Redis官方文檔
Spring-data-Redis源碼
網上的demo的缺點
使用繼承KeyExpirationEventMessageListener只能監聽當前key消失的事件
使用KeyspaceEventMessageListener只能監聽所有的key事件
總體來說,不能監聽某個特定的key的變化(某個特定的redis數據庫),具有缺陷
直接分析獲取可以操作的步驟
查看KeyspaceEventMessageListener的源碼解決問題
基本思想
創建自己的主題(用來監聽某個特定的key)
創建監聽器實現MessageListener
注入自己的配置信息
查看其中的方法(init方法)
public void init() { if (StringUtils.hasText(keyspaceNotificationsConfigParameter)) { RedisConnection connection = listenerContainer.getConnectionFactory().getConnection(); try { Properties config = connection.getConfig("notify-keyspace-events"); if (!StringUtils.hasText(config.getProperty("notify-keyspace-events"))) { connection.setConfig("notify-keyspace-events", keyspaceNotificationsConfigParameter); } } finally { connection.close(); } } doRegister(listenerContainer); } /** * Register instance within the container. * * @param container never {@literal null}. */ protected void doRegister(RedisMessageListenerContainer container) { listenerContainer.addMessageListener(this, TOPIC_ALL_KEYEVENTS); }
主要操作如下
向redis中寫入配置notify-keyspace-events并設置為EA
向RedisMessageListenerContainer中添加本身這個監聽器并指定監聽主題
所以本人缺少的就是這個主題表達式和監聽的notify-keyspace-events配置
直接來到redis的官方文檔找到如下內容
所以直接選擇的是:__keyspace@0__:myKey,使用的模式為KEA
所有的工作全部完畢后開始實現監聽
創建監聽類:RedisKeyChangeListener
本類中主要監聽redis中數據庫0的myKey這個key
import java.nio.charset.Charset; import java.util.Properties; import org.springframework.data.redis.connection.Message; import org.springframework.data.redis.connection.MessageListener; import org.springframework.data.redis.connection.RedisConnection; import org.springframework.data.redis.listener.KeyspaceEventMessageListener; import org.springframework.data.redis.listener.PatternTopic; import org.springframework.data.redis.listener.RedisMessageListenerContainer; import org.springframework.data.redis.listener.Topic; import org.springframework.util.StringUtils; /** * * @author hy * @createTime 2021-05-01 08:53:19 * @description 期望是可以監聽某個key的變化,而不是失效 * */ public class RedisKeyChangeListener implements MessageListener/* extends KeyspaceEventMessageListener */ { private final String listenerKeyName; // 監聽的key的名稱 private static final Topic TOPIC_ALL_KEYEVENTS = new PatternTopic("__keyevent@*"); //表示只監聽所有的key private static final Topic TOPIC_KEYEVENTS_SET = new PatternTopic("__keyevent@0__:set"); //表示只監聽所有的key private static final Topic TOPIC_KEYNAMESPACE_NAME = new PatternTopic("__keyspace@0__:myKey"); // 不生效 // 監控 //private static final Topic TOPIC_KEYEVENTS_NAME_SET_USELESS = new PatternTopic("__keyevent@0__:set myKey"); private String keyspaceNotificationsConfigParameter = "KEA"; public RedisKeyChangeListener(RedisMessageListenerContainer listenerContainer, String listenerKeyName) { this.listenerKeyName = listenerKeyName; initAndSetRedisConfig(listenerContainer); } public void initAndSetRedisConfig(RedisMessageListenerContainer listenerContainer) { if (StringUtils.hasText(keyspaceNotificationsConfigParameter)) { RedisConnection connection = listenerContainer.getConnectionFactory().getConnection(); try { Properties config = connection.getConfig("notify-keyspace-events"); if (!StringUtils.hasText(config.getProperty("notify-keyspace-events"))) { connection.setConfig("notify-keyspace-events", keyspaceNotificationsConfigParameter); } } finally { connection.close(); } } // 注冊消息監聽 listenerContainer.addMessageListener(this, TOPIC_KEYNAMESPACE_NAME); } @Override public void onMessage(Message message, byte[] pattern) { System.out.println("key發生變化===》" + message); byte[] body = message.getBody(); String string = new String(body, Charset.forName("utf-8")); System.out.println(string); } }
其實就改了幾個地方…
1.RedisConfig配置類
@Configuration @PropertySource(value = "redis.properties") @ConditionalOnClass({ RedisConnectionFactory.class, RedisTemplate.class }) public class RedisConfig { @Autowired RedisProperties redisProperties; /** * * @author hy * @createTime 2021-05-01 08:40:59 * @description 基本的redisPoolConfig * @return * */ private JedisPoolConfig jedisPoolConfig() { JedisPoolConfig config = new JedisPoolConfig(); config.setMaxIdle(redisProperties.getMaxIdle()); config.setMaxTotal(redisProperties.getMaxTotal()); config.setMaxWaitMillis(redisProperties.getMaxWaitMillis()); config.setTestOnBorrow(redisProperties.getTestOnBorrow()); return config; } /** * @description 創建redis連接工廠 */ @SuppressWarnings("deprecation") private JedisConnectionFactory jedisConnectionFactory() { JedisConnectionFactory factory = new JedisConnectionFactory( new JedisShardInfo(redisProperties.getHost(), redisProperties.getPort())); factory.setPassword(redisProperties.getPassword()); factory.setTimeout(redisProperties.getTimeout()); factory.setPoolConfig(jedisPoolConfig()); factory.setUsePool(redisProperties.getUsePool()); factory.setDatabase(redisProperties.getDatabase()); return factory; } /** * @description 創建RedisTemplate 的操作類 */ @Bean public StringRedisTemplate getRedisTemplate() { StringRedisTemplate redisTemplate = new StringRedisTemplate(); redisTemplate.setConnectionFactory(jedisConnectionFactory()); redisTemplate.setEnableTransactionSupport(true); return redisTemplate; } @Bean public RedisMessageListenerContainer redisMessageListenerContainer() throws Exception { RedisMessageListenerContainer container = new RedisMessageListenerContainer(); container.setConnectionFactory(jedisConnectionFactory()); return container; } // 創建基本的key監聽器 /* */ @Bean public RedisKeyChangeListener redisKeyChangeListener() throws Exception { RedisKeyChangeListener listener = new RedisKeyChangeListener(redisMessageListenerContainer(),""); return listener; } }
其中最重要的就是RedisMessageListenerContainer 和RedisKeyChangeListener
2.另外的RedisProperties類,加載redis.properties文件成為對象的
/** * * @author hy * @createTime 2021-05-01 08:38:26 * @description 基本的redis的配置類 * */ @ConfigurationProperties(prefix = "redis") public class RedisProperties { private String host; private Integer port; private Integer database; private Integer timeout; private String password; private Boolean usePool; private Integer maxTotal; private Integer maxIdle; private Long maxWaitMillis; private Boolean testOnBorrow; private Boolean testWhileIdle; private Integer timeBetweenEvictionRunsMillis; private Integer numTestsPerEvictionRun; // 省略get\set方法 }
省略其他代碼
創建一個key,并修改發現變化
可以發現返回的是這個key執行的方法(set),如果使用的是keyevent方式那么返回的就是這個key的名稱
1.監聽redis中的key的變化主要利用redis的機制來實現(本身就是發布/訂閱)
2.默認情況下是不開啟的,原因有點耗cpu
3.實現的時候需要查看redis官方文檔和SpringBoot的源碼來解決實際的問題
Listener按照監聽的對象的不同可以劃分為:
監聽ServletContext的事件監聽器,分別為:ServletContextListener、ServletContextAttributeListener。Application級別,整個應用只存在一個,可以進行全局配置。
監聽HttpSeesion的事件監聽器,分別為:HttpSessionListener、HttpSessionAttributeListener。Session級別,針對每一個對象,如統計會話總數。
監聽ServletRequest的事件監聽器,分別為:ServletRequestListener、ServletRequestAttributeListener。Request級別,針對每一個客戶請求。
第一步:創建項目,添加依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.jdt.core.compiler</groupId> <artifactId>ecj</artifactId> <version>4.6.1</version> </dependency>
第二步:自定義監聽器
@WebListener public class MyServletRequestListener implements ServletRequestListener { @Override public void requestDestroyed(ServletRequestEvent sre) { System.out.println("Request監聽器,銷毀"); } @Override public void requestInitialized(ServletRequestEvent sre) { System.out.println("Request監聽器,初始化"); } }
第三步:定義Controller
@RestController public class DemoController { @RequestMapping("/fun") public void fun(){ System.out.println("fun"); } }
第四步:在程序執行入口類上面添加注解
@ServletComponentScan
部署項目,運行查看效果:
感謝你能夠認真閱讀完這篇文章,希望小編分享的“SpringBoot怎么監控Redis中某個Key的變化”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。