I have one irritating problem right now. My tests fail due to an autowire.
Could not autowire field: private k.dao.CompanyDao k.dao.CompanyDaoTest.companyDao; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [k.dao.CompanyDao] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency.
I think @ContextConfiguration can be the problem?
The test
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:**/servlet-context.xml", "classpath:**/root-context.xml", "classpath:**/ccc-jpa.xml" })
public final class CompanyDaoTest {
@Autowired
private CompanyDao companyDao;
@Test
public void testTest() {
}
}
CompanyDao
public interface CompanyDao extends GenericDao<Company> {
}
CompanyDaoJpa
@Repository("companyDao")
public class CompanyDaoJpa extends GenericDaoJpa<Company> implements CompanyDao {
public CompanyDaoJpa() {
super(Company.class);
}
}
GenericDao
public interface GenericDao<T extends DomainObject> {
public T get(Long id);
public List<T> getAll();
public T save(T object);
public T delete(T object);
}
servlet-context.xml
<annotation-driven />
<context:component-scan base-package="k"/>