程序报错:Failed to introspect annotations on class xxx.class java.lang.TypeNotPresentException: Type io.micrometer.core.annotation.TimedSet not present
这个异常通常是因为缺少与 io.micrometer.core.annotation.TimedSet 相关的依赖,需要将它添加到项目的依赖中。
解决方法如下:
检查项目的依赖中是否缺少与 io.micrometer.core.annotation.TimedSet 相关的依赖。
如果缺少该依赖,需要手动添加,可以在项目的 pom.xml 文件中添加如下依赖:
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
<version>1.7.3</version>
</dependency>
具体版本号可以根据实际情况进行选择。
添加依赖后,重新构建项目,该异常应该就可以解决了。