0


@SpringBootTest单元测试中报错:无法自动装配,找不到 ‘XXX‘ 类型的 Bean

一开始照着网上教程讲Springboot原理中的代码来copy写的↓

  1. importcom.google.gson.Gson;importcom.itheima.pojo.Result;importorg.junit.jupiter.api.Test;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.boot.test.context.SpringBootTest;@SpringBootTestpublicclassAutoConfigurationTests{@AutowiredprivateGson gson;@TestpublicvoidtestJson(){String json = gson.toJson(Result.success());System.out.println(json);}}

结果Gson报错,最后发现自己项目中自动装配的bean对象中没有Gson类型的

那就换一个自动装配里面有的bean对象,比如下面这个JdbcTemplate
在这里插入图片描述
然后代码如下:

  1. @SpringBootTestpublicclassTest{@AutowiredprivateJdbcTemplate jdbcTemplate;@org.junit.jupiter.api.TestpublicvoidselData(){System.out.println("—————— result:"+jdbcTemplate);}}

这次JdbcTemplate不报错了,但是jdbcTemplate爆红,显示没有该bean,为什么?

解决: @SpringBootTest后面要加(classes = application.class),application.class是你自己主程序启动类的名字。让该测试类所在的目录名和主程序启动类的目录名保持一致(这个我觉得可有可无,最重要的是加上classes = application.class)

  1. @SpringBootTest(classes = application.class)publicclassTest{@AutowiredprivateJdbcTemplate jdbcTemplate;@org.junit.jupiter.api.TestpublicvoidselData(){System.out.println("—————— result:"+jdbcTemplate);}}

运行成功!

在这里插入图片描述


本文转载自: https://blog.csdn.net/qq_61551948/article/details/141422557
版权归原作者 Kathryn7 所有, 如有侵权,请联系我们删除。

“@SpringBootTest单元测试中报错:无法自动装配,找不到 ‘XXX‘ 类型的 Bean”的评论:

还没有评论