Spring boot 1.4 测试:配置错误:发现@BootstrapWith 的多个声明
Posted
技术标签:
【中文标题】Spring boot 1.4 测试:配置错误:发现@BootstrapWith 的多个声明【英文标题】:Spring boot 1.4 Testing : Configuration error: found multiple declarations of @BootstrapWith 【发布时间】:2017-04-24 18:22:58 【问题描述】:按照此处的官方文档: 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 多个小时没有任何运气。
谢谢。
【问题讨论】:
@SpringBootTest
和 @WebMvcTest
是互斥的...要么测试整个应用程序,要么测试一个切片,但不能同时测试两者。
@M.Deinum :它的大提示,谢谢
@SpringBootTest
和 @DataMongoTest
都有类似的问题。删除 @SpringBootTest
解决了这个问题。错误消息可能会更清楚...
【参考方案1】:
您只能使用@DataJpaTest
。
在您的测试类中删除 @SpringBootTest
【讨论】:
【参考方案2】:我在这个设置中遇到了类似的问题:
@WebMvcTest
@SpringBootTest
@ContextConfiguration(classes = Controller.class)
public class ControllerTest
@Autowired
private MockMvc mockMvc;
...
我在控制器中有一个自动装配的 Spring 服务 bean。
最后的正确设置是只留下提供 MockMvc 的@WebMvcTest
,并为服务添加一个@MockBean
。
我的最终工作测试是:
@WebMvcTest(Controller.class)
public class ControllerTest
@Autowired
private MockMvc mockMvc;
@MockBean
private CustomerService customerService;
...
【讨论】:
【参考方案3】:在六月 5 可能是:
@ExtendWith(SpringExtension.class)
@DataJpaTest
class DeliveryRepositoryTest
@Autowired
private DeliveryRepository repository;
...
【讨论】:
【参考方案4】:看起来您想编写集成测试。这就是为什么我建议只使用
@SpringBootTest(classes = Application.class)
如果要使用junit4,那就加
@RunWith(SpringRunner.class)
【讨论】:
【参考方案5】:希望这会有所帮助。在将其从@SpringBootTest 中删除后它对我有用,并且稍后在测试网络时使用相同的@AutoWired 会引发错误,因为我使用了界面。而是模拟它的工作原理。
package com.naveen.productreview;
import static org.hamcrest.Matchers.containsString;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import com.naveen.productreview.service.IProductReviewService;
@RunWith(SpringRunner.class)
@WebMvcTest
//@SpringBootTest
public class WebLayerTest
@Autowired
private MockMvc mockMvc;
@MockBean
private IProductReviewService productReviewService;
@Test
public void shouldReturnDefaultMessage() throws Exception
this.mockMvc.perform(get("/api/product-review")).andDo(print()).andExpect(status().isOk())
.andExpect(content().string(containsString("Naveen")));
【讨论】:
【参考方案6】:这是因为您同时声明了@WebMvcTest 和@SpringBootTest,我通过删除@SpringBootTest 解决了我同样的问题
【讨论】:
【参考方案7】:我知道回答这个问题为时已晚,但它可能会在未来对某人有所帮助......我有同样的问题,经过一些研究,我发现如果有@,就不应该有@WebMvcTest
987654324@。所以只需删除 @WebMvcTest
和 @SpringBootTest
将负责其余的工作。
【讨论】:
来自documentation:In this test, the full Spring application context is started, but without the server. We can narrow down the tests to just the web layer by using @WebMvcTest
这意味着@WebMvcTest
可以通过不加载服务器和完整的应用程序上下文来使测试更轻松。因此,Nesrin 的回答更准确。
这个解决方案有一些缺点。请记住,@SpringBootTest 始终加载完整的应用程序上下文。这是关于差异的主题:***.com/questions/39865596/…【参考方案8】:
只需删除@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>
【讨论】:
【参考方案9】:spring test 找不到主配置类时会出现此异常。 尝试将 @ContextConfiguration anootation 添加到您的测试类。关注 spring 测试文档了解更多详情(Detecting test configuration 部分)
我的示例测试类是这样的:
@RunWith(SpringRunner.class)
@ContextConfiguration(classes=Application.class)
@WebMvcTest(MyController.class)
public class MyConrollerTests
...
【讨论】:
完美运行! 注意:如果您将 Application.class 从默认主包移动到子包,这也是必需的。 当你有一个单独的测试类时,也修复了 2 个应用程序类的问题。以上是关于Spring boot 1.4 测试:配置错误:发现@BootstrapWith 的多个声明的主要内容,如果未能解决你的问题,请参考以下文章
在 Spring Boot 1.4 中测试 Spring MVC 切片的问题