I have an application which is not a dynamic web project. I have the arrangement such that its like a library in form of a jar which is exposed via interfaces. I am trying to auto wire this interface into my API project which is Dynamic web project. But it throws bean creation exception
1. I have a MyLibraryCofiguration class in library which has @Configuration and @Import alongwith @ComponentScan.
@Configuration @Import({BasicConfiguration.class,OperationalLoggingConfiguration.class,RestConfiguration.class}) @ComponentScan(" nl.ming.cram&#34) 公共类MyConfiguration(){
public MyConfiguration() {
packages("nl.ming.cram.gateway");
}
@Bean
public MyInterface getMyInterface() {
return new MyImpl();
}
}
2. My API project has MyApiCofiguration class which has @Import in which I am importing my MyLibraryCofiguration class. In the same class I have used:
@Configuration
@Import({
MyConfiguration.class
})
@ComponentScan({"nl.ming.api.creditcardlist"})
public class CreditCardListConfiguration {
@Bean
public MyInterface getMyInterface() {
return new CramImpl();
}
}
3. In my API project , in MyApiService class - I have @Autowired MyInterface to access methods of library jar as shown below:
@Component
public class MyAPIService {
@Autowired
MyInterface MyInterface;
}
It throws a Bean creation exception for getMyInterface as is shown below -
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'creditCardService': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field:
nl.ing.cram.gateway.CramInterfacenl.ing.api.creditcardlist.services.CreditCardService.cramIface;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'getCramInterface': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private nl.ing.cram.dao.CramDaonl.ing.cram.gateway.CramImpl.cramDao;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cramDao': Injection of resource dependencies failed;
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [nl.ing.sc.customerrequest.createcustomerrequest1.CreateCustomerRequestServiceOperationClient] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@javax.annotation.Resource(shareable=true, mappedName=, description=, name=, type=class java.lang.Object, lookup=, authenticationType=CONTAINER)}
Any help would be appreciated.
答案 0 :(得分:0)
任何类型的Java应用程序都不能使用spring。
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type
我能够看到上面的异常,这意味着spring能够找到你注入的类型而不是它的实现。
检查你的spring-config: -
<context:component-scan base-package="..." />
异常堆栈跟踪中的异常原因: -
在你的nl.ing.cram.gateway.CramImpl.cramDao类中,它无法注入CreateCustomerRequestServiceOperationClient类型的依赖项,因为它无法找到它的实现。