All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.micrometer.spring.autoconfigure.cache.CacheMeterBinderProvidersConfiguration Maven / Gradle / Ivy

/*
 * Copyright 2012-2019 the original author or authors.
 *
 * 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 io.micrometer.spring.autoconfigure.cache;

import com.hazelcast.core.Hazelcast;
import com.hazelcast.spring.cache.HazelcastCache;
import io.micrometer.core.instrument.binder.MeterBinder;
import io.micrometer.spring.cache.*;
import net.sf.ehcache.Ehcache;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.cache.caffeine.CaffeineCache;
import org.springframework.cache.ehcache.EhCacheCache;
import org.springframework.cache.jcache.JCacheCache;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * Configure {@link CacheMeterBinderProvider} beans.
 *
 * @author Stephane Nicoll
 */
@Configuration
@ConditionalOnClass(MeterBinder.class)
class CacheMeterBinderProvidersConfiguration {

    @Configuration
    @ConditionalOnClass({CaffeineCache.class,
            com.github.benmanes.caffeine.cache.Cache.class})
    static class CaffeineCacheMeterBinderProviderConfiguration {

        @Bean
        public CaffeineCacheMeterBinderProvider caffeineCacheMeterBinderProvider() {
            return new CaffeineCacheMeterBinderProvider();
        }

    }

    @Configuration
    @ConditionalOnClass({EhCacheCache.class, Ehcache.class})
    static class EhCache2CacheMeterBinderProviderConfiguration {

        @Bean
        public EhCache2CacheMeterBinderProvider ehCache2CacheMeterBinderProvider() {
            return new EhCache2CacheMeterBinderProvider();
        }

    }

    @Configuration
    @ConditionalOnClass({HazelcastCache.class, Hazelcast.class})
    static class HazelcastCacheMeterBinderProviderConfiguration {

        @Bean
        public HazelcastCacheMeterBinderProvider hazelcastCacheMeterBinderProvider() {
            return new HazelcastCacheMeterBinderProvider();
        }

    }

    @Configuration
    @ConditionalOnClass({JCacheCache.class, javax.cache.CacheManager.class})
    static class JCacheCacheMeterBinderProviderConfiguration {

        @Bean
        public JCacheCacheMeterBinderProvider jCacheCacheMeterBinderProvider() {
            return new JCacheCacheMeterBinderProvider();
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy