您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“使用@CacheEvict 多參數怎么匹配刪除”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“使用@CacheEvict 多參數怎么匹配刪除”這篇文章吧。
如果@Cacheable(“XXX”)
Object getXXX(String a, String b, String c);
spring的緩存使用的key是ESPL表達式,然后翻看源碼key默認用的生成方式是org.springframework.cache.interceptor.SimpleKeyGenerator
大于1個參數走的是最后一個方法
/** * Generate a key based on the specified parameters. */ public static Object generateKey(Object... params) { if (params.length == 0) { return SimpleKey.EMPTY; } if (params.length == 1) { Object param = params[0]; if (param != null && !param.getClass().isArray()) { return param; } } return new SimpleKey(params); }
然后查看org.springframework.cache.interceptor.SimpleKey對應代碼,發現返回的其實是SimpleKey
/** * Create a new {@link SimpleKey} instance. * @param elements the elements of the key */ public SimpleKey(Object... elements) { Assert.notNull(elements, "Elements must not be null"); this.params = new Object[elements.length]; System.arraycopy(elements, 0, this.params, 0, elements.length); this.hashCode = Arrays.deepHashCode(this.params); }
單獨寫一個自定義的KeyGenerator,處理對應的key。(之前的redis的文章已寫過,所以不重復寫了)
下面博文的 MyKeyGenerator 這個類
sprintboot使用spring-security包,緩存內存與redis共存
@Cacheable(value=“XXX”, key=“xxxx”)
@CacheEvict(value=“XXX”, key=“xxxx”)
做相應的key配置
數組的話可以使用 key = “#root.args[0]”
參數參考如下:
名字 | 位置 | 描述 | 示例 |
---|---|---|---|
methodName | root object | 當前被調用的方法名 | #root.methodName |
method | root object | 當前被調用的方法 | #root.method .name |
target | root object | 當前被調用的目標對象 | #root.target |
targetClass | root object | 當前被調用的目標對象類 | #root.targetClass |
args | root object | 當前被調用的方法的參數列表 | #root.args[0] |
caches | root object | 當前方法調用使用的緩存列表 | #root.caches[0].name |
argument name | evaluation context | 方法參數的名字,可以直接#參數名,也可以使用#p0或#a0的形式,0代表參數的索引 | #iban、#a0、#p0 |
result | evaluation context | 方法執行后的返回值 | #result |
以上是“使用@CacheEvict 多參數怎么匹配刪除”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。