• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

@SpringBootTest在加载上下文时未创建内部bean

用户头像
it1352
帮助5

问题说明

我想了解为什么在尝试进行如下所示的测试时未创建内部bean:

I would like to learn why inner beans are not created while trying to test like below :

RunWith(SpringRunner.class)
@SpringBootTest(classes=MyTest.class)
public class MyTest {

     @SpyBean A a;



     @Test
     public  void  myTest() {   
       assertTrue(a.some());       
     }


    @Component
    class A {
      private B b;
      A(B dependency) {
        this.b = dependency;
      }
      boolean some() {
        return b.value();
      }
    }

    @Configuration
    class B {


      boolean value() { return true; }
    }

}

错误:No qualifying bean of type 'com.example.MyTest$B' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations:

尽管使用@Configuration注释内部类,但在测试方法时并未创建Bean.

Despite annotating the inner class with @Configuration it is not creating the bean while testing the method.

请注意,当我在@SpringBootTest(classes=MyTest.class,MyTest.B.class,MyTest.A.class})

正确答案

#1

@ContextConfiguration(classes = MyTest.B.class)添加到MyTest类中. 但 将配置放入测试类中并不是最好的主意.最好创建单独的配置类MyTestConfig,该类创建所有需要测试的bean,并由@ContextConfiguration(classes = MyTestConfig.class)在测试类中使用它.

Add @ContextConfiguration(classes = MyTest.B.class) to the MyTest class.
But putting configuration into a test class isn't the best idea. It's better to create separate configuration class MyTestConfig that create all need beans for test and use it in the test class by @ContextConfiguration(classes = MyTestConfig.class).

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcajkbg
系列文章
更多 icon
同类精品
更多 icon
继续加载