com.taotao.cloud.cache.jetcache.configuration.JetCacheAutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-cloud-starter-cache-jetcache Show documentation
Show all versions of taotao-cloud-starter-cache-jetcache Show documentation
taotao-cloud-starter-cache-jetcache
The newest version!
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.taotao.cloud.cache.jetcache.configuration;
import com.alicp.jetcache.CacheManager;
import com.taotao.cloud.cache.jetcache.enhance.HerodotusCacheManager;
import com.taotao.cloud.cache.jetcache.enhance.JetCacheCreateCacheFactory;
import com.taotao.cloud.cache.jetcache.properties.JetCacheProperties;
import com.taotao.cloud.cache.jetcache.utils.JetCacheUtils;
import com.taotao.cloud.common.constant.StarterName;
import com.taotao.cloud.common.utils.log.LogUtils;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Primary;
/**
* jetcache 配置
*
* @author shuigedeng
* @version 2022.07
* @since 2022-07-03 09:50:26
*/
// @EnableCreateCacheAnnotation
@AutoConfiguration(after = com.alicp.jetcache.autoconfigure.JetCacheAutoConfiguration.class)
@EnableConfigurationProperties(JetCacheProperties.class)
// @EnableMethodCache(basePackages = {"com.taotao.cloud.*.biz.service.impl",
// "com.taotao.cloud.captcha.support"})
@ConditionalOnProperty(
prefix = JetCacheProperties.PREFIX,
name = "enabled",
havingValue = "true",
matchIfMissing = true)
public class JetCacheAutoConfiguration implements InitializingBean {
@Override
public void afterPropertiesSet() throws Exception {
LogUtils.started(JetCacheAutoConfiguration.class, StarterName.CACHE_JETCACHE_STARTER);
}
@Bean
@ConditionalOnClass(CacheManager.class)
public JetCacheCreateCacheFactory jetCacheCreateCacheFactory(CacheManager jcCacheManager) {
JetCacheCreateCacheFactory factory = new JetCacheCreateCacheFactory(jcCacheManager);
JetCacheUtils.setJetCacheCreateCacheFactory(factory);
LogUtils.trace("[Herodotus] |- Bean [Jet Cache Create Cache Factory] Auto Configure.");
return factory;
}
@Bean
@Primary
@ConditionalOnMissingBean
public HerodotusCacheManager herodotusCacheManager(
JetCacheCreateCacheFactory jetCacheCreateCacheFactory, JetCacheProperties cacheProperties) {
HerodotusCacheManager herodotusCacheManager =
new HerodotusCacheManager(jetCacheCreateCacheFactory, cacheProperties);
herodotusCacheManager.setAllowNullValues(cacheProperties.getAllowNullValues());
LogUtils.trace("[Herodotus] |- Bean [Jet Cache Herodotus Cache Manager] Auto Configure.");
return herodotusCacheManager;
}
}