天天看点

SSM运行异常 org.springframework.beans.factory.UnsatisfiedDependencyException

No qualifying bean of type 'com.zking.ssm.service.IOrderService' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
           

原因: 依赖注入的注解 @Service 修饰在了接口上,应该修饰在实现类

继续阅读