A component required a bean of type 'com.adj.manager.agent.AgentDemandStickManager' that could not be found.
时间: 2024-03-28 14:19:10 浏览: 84
This error message means that there is a component in your code that needs an instance of the class 'com.adj.manager.agent.AgentDemandStickManager', but Spring framework couldn't find it. This could be because the class is not defined as a Spring bean, or because there is a typo in the bean name or package name. To fix this error, you need to make sure that the class is defined as a Spring bean and that it is properly configured in your application context.
阅读全文