こちらの公式ドキュメントに従ってください: http://docs.spring.io/spring-boot/docs/1.4.0.M2/reference/htmlsingle/#Testing
私のREST APIメソッドのいずれかをテストしたかった:
@RunWith(SpringRunner.class)
@WebMvcTest(LoginController.class)
@SpringBootTest(classes = Application.class)
public class AuthorizationServiceTest {
@Autowired
private TestRestTemplate restTemplate;
@Test
public void test() {
Object returnedObject=his.restTemplate.getForObject("/login", Object.class);
}
}
ドキュメントに記載されているとおり:
検索アルゴリズムは、@ SpringBootApplicationまたは@SpringBootConfiguration注釈付きクラスが見つかるまで、テストを含むパッケージから機能します。コードを適切な方法で構成している限り、通常はメイン構成が見つかります。
私は自分のコードを適切に構造化しました(少なくとも私は思う):
AuthorizationService:パッケージcom.xxx.yyy.zzz.authorizationの下にあります。
AuthorizationServiceTest:パッケージcom.xxx.yyy.zzz.authorizationTestの下にあります;
私はこの例外(フルトレース)を取得しています:
Java.lang.IllegalStateException: Configuration error: found multiple declarations of @BootstrapWith for test class [com.orangeraid.rasberry.gateway.authorizationTest.AuthorizationServiceTest]: [@org.springframework.test.context.BootstrapWith(value=class org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper), @org.springframework.test.context.BootstrapWith(value=class org.springframework.boot.test.context.SpringBootTestContextBootstrapper)]
at org.springframework.test.context.BootstrapUtils.resolveExplicitTestContextBootstrapper(BootstrapUtils.Java:155)
at org.springframework.test.context.BootstrapUtils.resolveTestContextBootstrapper(BootstrapUtils.Java:126)
at org.springframework.test.context.TestContextManager.<init>(TestContextManager.Java:105)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTestContextManager(SpringJUnit4ClassRunner.Java:152)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.<init>(SpringJUnit4ClassRunner.Java:143)
at org.springframework.test.context.junit4.SpringRunner.<init>(SpringRunner.Java:49)
at Sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at Sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.Java:62)
at Sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.Java:45)
at Java.lang.reflect.Constructor.newInstance(Constructor.Java:422)
at org.junit.internal.builders.AnnotatedBuilder.buildRunner(AnnotatedBuilder.Java:104)
at org.junit.internal.builders.AnnotatedBuilder.runnerForClass(AnnotatedBuilder.Java:86)
at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.Java:59)
at org.junit.internal.builders.AllDefaultPossibilitiesBuilder.runnerForClass(AllDefaultPossibilitiesBuilder.Java:26)
at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.Java:59)
at org.junit.internal.requests.ClassRequest.getRunner(ClassRequest.Java:33)
at org.Eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.createUnfilteredTest(JUnit4TestLoader.Java:84)
at org.Eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.createTest(JUnit4TestLoader.Java:70)
at org.Eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.loadTests(JUnit4TestLoader.Java:43)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.Java:444)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.Java:675)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.Java:382)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.Java:192)
これで私を助けてください、私はすでに運なしで2-3時間以上を費やしました。
ありがとう。
この例外は、スプリングテストでメインの構成クラスが見つからない場合に発生します。テストクラスに@ContextConfiguration注釈を追加してみてください。詳細については、スプリングテストのドキュメントに従ってください(セクション テスト構成の検出 )
私のテストクラスの例は次のとおりです。
@RunWith(SpringRunner.class)
@ContextConfiguration(classes=Application.class)
@WebMvcTest(MyController.class)
public class MyConrollerTests {
...
}
@SpringBootTestを削除するだけで、すべて正常に機能します。 @SpringBootTestと@DataJpaTestの使用に関して同じ問題が発生しました。pom.xmlの親springbootバージョンを以下のように2.1.0にアップグレードすると、このエラーが発生しました。バージョン2.0.5を使用していたとき、このエラーは発生しませんでした。
@RunWith(SpringRunner.class)
//@SpringBootTest//(classes = KalahApplication.class)
// DataJpaTest supports rollback after running every test case
@DataJpaTest
public class GameRepositoryTest {
pom.xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
私はこの質問に答えるには遅すぎることを知っていますが、将来誰かに役立つかもしれません...私は同じ問題を抱えていて、いくつかの調査の後、@WebMvcTest
がある場合は@SpringBootTest
があってはならないことがわかりました。したがって、@WebMvcTest
を削除するだけで、@SpringBootTest
が残りを処理します。