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


出现这样的问题,代表的是Controller调用Service,但却找不到Service,一般是因为,相应的注解没有加上,比我的OrderService类就是忘记加@Service注解了,出现了这样的错误。所以加上@Service注解就可以了。

更多推荐

Consider defining a bean of type 'com.cxh.common.service.OrderService'