Could not autowire. No beans of 'ChanjetClient' type found.
时间: 2023-10-28 12:25:26 浏览: 48
No bean named 'user' available
5星 · 资源好评率100%
这个问题可能是因为你在使用自动装配(Autowire)时,没有在Spring容器中定义一个名为 'ChanjetClient' 的 Bean。你需要在你的应用程序的配置文件中定义这个 Bean,或者在使用 @Autowired 注释时明确指定它的类型。如果你已经定义了这个 Bean,那么请检查它的命名和类型是否正确。如果问题仍然存在,请提供更多的上下文和代码,以便我能够更好地帮助你解决问题。
阅读全文