Consider defining a bean of type 'com.cxh.common.service.OrderService' in your configuration.怎么解决呢

我们有时运行项目会出现Field orderService in com.cxh.consumer.web.OrderController required a bean of type ‘com.cxh.common.service.OrderService’ that could not be found.这样的问题

Consider defining a bean of type 'com.cxh.common.service.OrderService' in your configuration.怎么解决呢_第1张图片
出现这样的问题,代表的是Controller调用Service,但却找不到Service,一般是因为,相应的注解没有加上,比我的OrderService类就是忘记加@Service注解了,出现了这样的错误。所以加上@Service注解就可以了。

你可能感兴趣的:(项目,Service注解,not,be,found,问题)