gpt4 book ai didi

java - 不满意的依赖异常 : Error creating bean with name 'accountController'

转载 作者:行者123 更新时间:2023-12-02 13:14:10 24 4
gpt4 key购买 nike

我一直在观看使用 Spring 进行 Web 开发的教程视频。

Here是完整的源代码。

以下是我向

发送 GET 请求时遇到的错误

localhost:8080/basic-web-app/rest/accounts

https://drive.google.com/open?id=0B5FM3CiBT2VPYWM2MzRVUG9wSGM

最佳答案

在文件 mvc-dispatcher-servlet.xml 中,您将扫描包指定为:

<context:component-scan base-package="app.rest.mvc"/>

但是所有服务和存储库都放置在app.core包中。因此 Spring 无法找到服务类并且不会实例化服务 bean。只需更改下一个必须扫描的包即可:

<context:component-scan base-package="app.rest.mvc, app.core"/>

然后Spring将找到应用程序的所有组件。

关于java - 不满意的依赖异常 : Error creating bean with name 'accountController' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43840747/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com