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

io.github.ye17186.myhelper.caffeine.autoconfigure.MhCaffeineAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package io.github.ye17186.myhelper.caffeine.autoconfigure;

import io.github.ye17186.myhelper.caffeine.cache.CaffeineCacheManager;
import io.github.ye17186.myhelper.caffeine.autoconfigure.properties.CaffeineCacheProperties;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @author ye17186
 * @since 2022-11-07
 */
@Configuration
@EnableCaching
@EnableConfigurationProperties(CaffeineCacheProperties.class)
public class MhCaffeineAutoConfiguration {

    @Autowired
    CaffeineCacheProperties properties;

    @Bean
    public CaffeineCacheManager caffeineCacheManager() {

        return new CaffeineCacheManager(properties);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy