义齿lang.NoClassDefFoundError: org/springframework/core/annotation/MergedAnnota


Springbootユニットは起動時にエラーが発生し、次の異常を放出します.
java.lang.NoClassDefFoundError: org/springframework/core/annotation/MergedAnnotations$SearchStrategy

注記パッケージにロードできませんでしたが、テスト依存が元の依存を間違えた疑いがあります.
<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>5.2.1.RELEASE</version>
        </dependency>

これはspringフレームワークのユニット自己測定依存であり、springbootのユニット自己測定は適用されず、依存を以下の依存に変更すればよい.
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
        </dependency>