Error creating bean with name 'waterInfoController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean

 Error creating bean with name 'waterInfoController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [utils.FileUpload] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)} 

表示在waterController类中  [utils.FileUpload] 没有被组件扫描到 

解决方案:把utils这个包放在扫描包

原文地址:https://www.cnblogs.com/dawn-and-night/p/7041784.html