Error starting ApplicationContext. To display the conditions report rerun your application with 'debug' enabled.
当我们看到这个报错的时候有的说是jar包重复,有的说是Controller包和Application包处于平行位置,还有的觉得是@RequestMapping的value值重复了,有的觉得是没有配置数据库,有的觉得是springboot的类的属性注入错误,删除加在属性上面错误的@value注解,而这些我们应该去认真检查但是如果这些地方都觉得没有错,我们应该静下心来查看下一个报错的地方,如果出现这样的报错应该还有另外一个报错与这个相对应的。
Field skuService in com.xxxxxx.goods.controller.SkuController required a bean of type 'com.xxxxx.goods.service.SkuService' that could not be found.
这个就是我往下看的一个报错,看到这个报错就明显了很多,这句话的意思是com.xxx.goods.controller.skucontroller 中,field skuservice 需要一个类型为‘ com.xxxx.goods.service.skuservice’的 bean,但扫描不到所以报错了,重点就是说service中没有对应的类型。如果我们确定已经写好了service,在代码service上缺少相应的注解那我们应该是在
public class SkuServiceImpl implements SkuService
补上注解,,如图