解决问题:“字段需要无法找到类型的 Bean”
错误消息“Field userService in main. java.rest.UsersController required a bean of type 'main.java.service.UserService' that Could not be find,”表示 Spring 应用程序找不到类型为 'main.java.service.UserService' 的已注册 bean。
原因:
当 Spring 容器无法找到指定类型的 bean 定义时,就会出现此问题。 Bean 通常使用 @Service 之类的注释来定义,但是当将 MongoDB 与 Spring 结合使用时,您通常会从 MongoRepository 扩展存储库接口。
解决方案:
有两种可能解决此问题的解决方案:
解决方案 1:重构项目结构
将 UserService 类移至 Spring 容器扫描的包中。默认情况下,Spring 会扫描声明了 @SpringBootApplication 注解的基础包下的所有包。如果您的主类位于 com.example.something 中,请将 UserService 移至 com.example.something.service。
解决方案 2:使用 @ComponentScan
添加以下内容到声明@SpringBootApplication注释的主类的行:
<code class="java">@SpringBootApplication(scanBasePackages = { "com.example.something", // Your default scanned package "main.java.service" // The package containing the UserService class })</code>
这将在bean扫描过程中显式包含“main.java.service”包。
以上是为什么我的 Spring 应用程序找不到我的 UserService Bean?的详细内容。更多信息请关注PHP中文网其他相关文章!