Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of ty

Caused by: org.springframework.beans . factory.NoSuchBeanDefinitionException : No qualifying bean of type [ com.xxx.LanguageRecognizeService ] found for dependency [ com.xxxxxx.LanguageRecognizeService ]: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@ org.springframework.beans . factory.annotation.Autowired (required=true)}

In general, this kind of error is that the definition of bean is not found and the XML file is not imported.

Another kind of error is no class found. There is an XML file, but the jar package is not loaded to classpath. POM has no dependency, or conflicts, or depends on a lower version.

Read More: