Spring Boot Cache + Apache点火+ Spring Boot Actuator - 运行测试时应用程序无法启动

问题描述 投票:1回答:1

我有一个项目,我使用Spring Boot 2.0.0 +,Spring Boot Cache,Apache Ignite,Spring Boot Actuator和TestNG。

由于我从点燃2.5升级到点燃2.6+,我在尝试运行应用程序测试时遇到了问题,因为每次应用程序在测试任务上启动时,点燃都无法在CacheMetricsRegistrarConfiguration上注册它的缓存指标。

应用程序失败,但出现以下异常:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMetricsRegistrarConfiguration': Invocation of init method failed; nested exception is java.lang.AssertionError

我创建了一个展示此问题的应用程序,您可以通过以下链接访问它:

https://github.com/pmrochaubi/apache-ignite-spring-boot-actuator

有人能解释我发生了什么以及如何解决这个问题?目前我被困在版本2.5 ...

干杯

java spring-boot testng ignite spring-boot-actuator
1个回答
1
投票

在这里很难说谁应该受到指责,但正如你所看到的:

Caused by: java.lang.AssertionError: null
    at org.apache.ignite.cache.spring.SpringCacheManager.getCacheNames(SpringCacheManager.java:371) ~[ignite-spring-2.7.0.jar:2.7.0]
    at org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMetricsRegistrarConfiguration.bindCacheManagerToRegistry(CacheMetricsRegistrarConfiguration.java:73) ~[spring-boot-actuator-autoconfigure-2.1.3.RELEASE.jar:2.1.3.RELEASE]
    at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684) ~[na:1.8.0_144]
    at org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMetricsRegistrarConfiguration.bindCachesToRegistry(CacheMetricsRegistrarConfiguration.java:69) ~[spring-boot-actuator-autoconfigure-2.1.3.RELEASE.jar:2.1.3.RELEASE]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_144]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_144]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_144]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_144]
    at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:363) ~[spring-beans-5.1.5.RELEASE.jar:5.1.5.RELEASE]
    at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:307) ~[spring-beans-5.1.5.RELEASE.jar:5.1.5.RELEASE]
    at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:136) ~[spring-beans-5.1.5.RELEASE.jar:5.1.5.RELEASE]
    ... 73 common frames omitted

SpringCacheManager.getCacheNames()来自postProcessBeforeInitialization()。但是很明显,您只能在缓存初始化后获取缓存名称,例如,在Ignite启动并且在onApplicationEvent()上调用SpringCacheManager之后。

对于执行器的CacheMetricsRegistrarConfiguration来说,这是一个有趣的问题,为什么当没有任何启动时他们觉得需要在@PostConstruct方法中调用这个方法。

© www.soinside.com 2019 - 2024. All rights reserved.