海印网
海印网

Spring Boot普通类注入失败:如何通过注解或SpringUtils解决?

admin数码00

Spring Boot普通类注入失败:如何通过注解或SpringUtils解决?-第1张图片-海印网

springboot中普通类注入引发错误,如何解决?

在spring boot应用程序中,您声明的普通类需要通过注解进行注册,以便spring容器能够管理它们。

如果未向普通类添加适当的注解,注入时可能会出现错误,如下所示:

a component required a bean of type '...printinvoiceservice' that could not be found.

登录后复制

为了解决此问题,需要考虑以下两种方案:

1. 为普通类添加注解

如果您需要spring管理此类,可以为其添加以下注解之一:

  • @component
  • @controller
  • @service
  • @repository

2. 手动获取spring管理的bean

如果您需要从未注册到spring容器的类中访问spring管理的类,可以使用 springutils 类。此类提供 getbean 方法,允许您访问应用程序上下文中注册的bean,即使它们不是您的代码中直接调用的。

注意:

虽然通过第二种方法可以解决错误,但通常不建议在spring管理的类中使用新对象,因为这会破坏依赖注入机制。

如果您选择为普通类添加注解,还需要更新其中任何手动创建的对象的声明,以使其从spring容器中注入。例如,如果您有一个代码块:

publishservice mobilecodews = new publishservice(uurl);

登录后复制

您需要将其更改为:

PublishService mobileCodeWS = springUtils.getBean("publishService");

登录后复制

以上就是Spring Boot普通类注入失败:如何通过注解或SpringUtils解决?的详细内容,更多请关注其它相关文章!

Tags: 注解普通

Sorry, comments are temporarily closed!