Duplicate annotation. The declaration of 'org.springframework.boot.test.context.SpringBootTest' does not have a valid java.lang.annotation.Repeatable annotation
时间: 2023-09-18 20:08:14 浏览: 221
一篇讲明白Doris数仓特点.doc
这个错误通常发生在使用JUnit进行Spring Boot测试时,它表示您在同一个类或方法上多次使用了相同的注解,而该注解不支持重复使用。在这种情况下,重复的注解将会被视为无效。
要解决这个问题,您需要查找并删除重复的注解。您还可以尝试将注解更改为支持重复使用的注解,例如 @RepeatedTest 或 @TestFactory。最后,您可以尝试更新您的JUnit版本或查看JUnit文档以获得更多帮助。
阅读全文