@SpringBootTest 尝试连接到实际的 Ehcache 实例

@SpringBootTest tries to connect to actual Ehcache instance

我们的 Spring 启动应用程序应该能够从远程 Ehcache 实例中获取数据。为此,添加了以下配置。

@Configuration
@EnableCaching
public class EhcacheManager {

    private static final String TERRACOTTA_LINK = "terracotta://";

    private final EhcacheConfiguration ehcacheConfiguration;

    public EhcacheManager(EhcacheConfiguration ehcacheConfiguration) {
        this.ehcacheConfiguration = ehcacheConfiguration;
    }

    @Bean
    PersistentCacheManager persistentCacheManager() {
        return ehCacheManager();
    }

    private PersistentCacheManager ehCacheManager() {
        final String ehcacheURI = TERRACOTTA_LINK + ehcacheConfiguration.getHost() + ":" + ehcacheConfiguration.getPort() + "/" + ehcacheConfiguration.getResource();

        PersistentCacheManager cacheManager = newCacheManagerBuilder()
                .with(cluster(create(ehcacheURI)).autoCreate())
                .build(true);

        CacheConfiguration<String, String> myCache = newCacheConfigurationBuilder(String.class, String.class,
                newResourcePoolsBuilder().with(clusteredDedicated("offheap-1", 50, MB)))
                .withService(withConsistency(EVENTUAL))
                .withDefaultResilienceStrategy()
                .build();
        cacheManager.createCache("someCacheKey", myCache);
        return cacheManager;
    }
}

但是,我们所有用 @SpringBootTest 注释的集成测试都存在问题。这些测试将启动应用程序上下文,并尝试连接到远程 Ehcache 实例;这是 nto 可用。

有什么方法可以禁用这个实例化吗?或者我是否需要启动类似嵌入式 Ehcache 服务器的东西来进行集成测试以启动应用程序上下文?

如果您的应用程序可以 运行 禁用 EhCache,您可以简单地编辑 @SpringBootTest 注释以禁用 EhCache,例如:@SpringBootTest(properties = {"property.to.disable.ehcache=true"}), 保证EhCache只会在测试阶段被禁用

如果您的应用程序需要启用 EhCache,您最好的办法是添加一个 src/test/resources/application.properties 文件,其中包含属性 (例如主机,端口等) 指向一个本地的,可能是嵌入测试的 EhCache 实例。