I have the following code
The 2 javax.Inject Qualifiers
@Qualifier
@Target(value={ElementType.FIELD,ElementType.TYPE,ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface Hibernate {
--nothing goes here
}
@Qualifier
@Target(value={ElementType.FIELD,ElementType.TYPE,ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface Toplink{
--nothing goes here
}
I Qualify the repositories
@Named
@Hibernate
public class HibernateRepository implements IRepository{
-- some code
}
@Named
@Toplink
public class ToplinkRepository implements IRepository{
-- some code
}
These repositories are injected using javax.Inject
public class InvoiceService {
@Inject
//@Hibernate I alternate between the two to test
@Toplink
private IRepository iRepository;
public void saveInvoice(Invoice invoice){
iRepository.save(invoice);
}
using the following configuration class
@Configuration
public class Myconfig {
@Bean
public IRepository getHibernateRepository(){
return new HibernateRepository();
}
@Bean
public InvoiceService getInvoiceService(){
return new InvoiceService();
}
@Bean
public IRepository getToplinkRepository(){
return new ToplinkRepository();
}
}
This code works perfectly fine when I use the XML configuration , any idea how to get it working with javaConfig ?? Or is there something fundamentally wrong in my code ?? When used its throws the following exception
Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'getInvoiceService': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.domain.IRepository com.service.InvoiceService.iRepository; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [com.domain.IRepository] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@javax.inject.Inject(), @com.domain.Toplink()}
Thanks in anticipation.