Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
drtrang committed Apr 9, 2018
1 parent 52dfdb6 commit 2d5dbd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1,213 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog
## 1.1.1
1. 更新 Redisson 版本为 3.6.1
1. 更新 Redisson 版本为 3.6.4
2. 删除 ConfigMap 中的自动增加的 `default cache`

## 1.0.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.github.trang.redisson.autoconfigure;

import com.github.trang.autoconfigure.condition.ConditionalOnBeans;
import com.github.trang.autoconfigure.condition.ConditionalOnMissingBeans;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.cache.CacheManager;
import org.springframework.cache.interceptor.CacheAspectSupport;
Expand All @@ -24,7 +24,7 @@
*/
@Configuration
@ConditionalOnBeans({CacheAspectSupport.class, CacheManager.class})
@ConditionalOnMissingBeans({CompositeCacheManager.class, NoOpCacheManager.class})
@ConditionalOnMissingBean({CompositeCacheManager.class, NoOpCacheManager.class})
@ConditionalOnProperty(prefix = "spring.cache", name = "fallbackToNoOpCache", havingValue = "true")
@AutoConfigureAfter({CacheAutoConfiguration.class, RedissonCacheManagerAutoConfiguration.class})
@Slf4j
Expand Down
Loading

0 comments on commit 2d5dbd8

Please sign in to comment.