Class MetadataServiceCacheAutoConfiguration
- java.lang.Object
-
- com.broadleafcommerce.metadata.autoconfigure.MetadataServiceCacheAutoConfiguration
-
@Configuration @Conditional(com.broadleafcommerce.common.extension.cache.condition.OnEnabledCacheCondition.class) @ConditionalOnClass(org.apache.ignite.cache.spring.SpringCacheManager.class) @ConditionalOnProperty(value="com.broadleafcommerce.cache.activeCacheManagerImplementation", havingValue="com.broadleafcommerce.common.extension.autoconfigure.IgniteCacheAutoConfiguration", matchIfMissing=true) @EnableConfigurationProperties(MetadataCacheProperties.class) public class MetadataServiceCacheAutoConfiguration extends Object
Configuration for engaging default Broadleaf support for Apache Ignite cache- Author:
- Dima Myroniuk (dmyroniuk)
-
-
Constructor Summary
Constructors Constructor Description MetadataServiceCacheAutoConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.cache.interceptor.KeyGenerator
metadataAugmentationCacheKeyGenerator()
com.broadleafcommerce.common.extension.cache.CacheStateConfigurer
metadataAugmentationCacheStateConfigurer()
org.springframework.boot.autoconfigure.cache.CacheManagerCustomizer<org.apache.ignite.cache.spring.SpringCacheManager>
metadataCacheManagerCustomizer(com.broadleafcommerce.common.extension.autoconfigure.IgniteConfigurers.BasicIgniteConfigurer configurer, MetadataCacheProperties cacheProperties)
-
-
-
Method Detail
-
metadataCacheManagerCustomizer
@Bean @ConditionalOnMissingBean(name="metadataCacheManagerCustomizer") public org.springframework.boot.autoconfigure.cache.CacheManagerCustomizer<org.apache.ignite.cache.spring.SpringCacheManager> metadataCacheManagerCustomizer(com.broadleafcommerce.common.extension.autoconfigure.IgniteConfigurers.BasicIgniteConfigurer configurer, MetadataCacheProperties cacheProperties)
-
metadataAugmentationCacheKeyGenerator
@Bean @ConditionalOnMissingBean(name="metadataAugmentationCacheKeyGenerator") public org.springframework.cache.interceptor.KeyGenerator metadataAugmentationCacheKeyGenerator()
-
metadataAugmentationCacheStateConfigurer
@Bean @ConditionalOnMissingBean(name="metadataAugmentationCacheStateConfigurer") public com.broadleafcommerce.common.extension.cache.CacheStateConfigurer metadataAugmentationCacheStateConfigurer()
-
-