单元测试遇到的坑

一,错误

在单元测试时,无法注入bean

Error creating bean with name Unsatisfied dependency expressed through field

二、排查

排查过程

2.1 是否需要被注入的类没有加@Service等注解导致无法注入,或者bean.xml配置文件没有配置bean

2.2 springboot启动类是否没有扫描到bean的包-->需要用到的注解@ComponentScan(basePackages = "com.xx.mall.product")

2.3 测试类和springboot启动类是否有相同的包路径

三、结果

经过检查,是因为测试类和spring boot 启动类不在同一个路径下导致出错

四、造成错误的原因

创建项目的时候使用的包路径是com.xx.mall.mallproduct,在生成项目之后,test和java包路径下的路径都是com.xx.mall.mallproduct

然后使用代码自动生成的工具生成代码,配置的时候包名路径是com.xx.mall.product,此时生成的代码包路径是com.xx.mall.product

我将原有的代码目录从src.main下直接删除了,然后将新生成的代码粘贴进去,此时java源文件下的路径变成了com.xx.mall.porduct,而test包下的路径还是com.xx.mall.mallproduct导致出错

四、总结

虽然在项目中我们看到似乎单元测试和项目是分隔开的,但是他们的包路径要相同,才能在测试的时候扫描到所需要的类,进行bean的注入

造成

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
"Error creating bean with name 'userController' defined in file [J:\Code\2023-4\TestCache\target\classes\com\example\testcache\contrller\UserController.class]: Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'redisAutoInit' defined in class path resource [com/alicp/jetcache/autoconfigure/RedisAutoConfiguration.class]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: redis/clients/jedis/UnifiedJedis"这个错误的发生是因为在使用jetcache 2.7.3版本时,缺少了redis.clients.jedis.UnifiedJedis类的定义。 为了解决这个问题,你可以加入如下配置: ``` <!--处理jedis的版本问题--> <dependency> <groupId>com.alicp.jetcache</groupId> <artifactId>jetcache-starter-redis</artifactId> <version>2.7.3</version> <exclusions> <exclusion> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>4.3.1</version> </dependency> ``` 通过添加这些配置,你将解决缺少UnifiedJedis类的问题,从而解决"Error creating bean"的错误。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [Error creating bean with name ‘redisAutoInit‘ defined in class path resource ...](https://blog.csdn.net/dghehe/article/details/130173740)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值