在尝试管理共享公共基类的多个类时,我试图实现与 Spring 错误相同的情况?
但我仍然得到这个例外:
Error creating bean with name 'com.example.model.CategoryTest': Injection of
autowired dependencies failed; nested exception is
org.springframework.beans.factory.BeanCreationException: Could not autowire
field: private com.example.model.CategoryService
com.example.model.CategoryTest.service; nested exception is
org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean
of type [com.example.model.CategoryService] found for dependency: expected at
least 1 bean which qualifies as autowire candidate for this dependency.
Dependency annotations:
{@org.springframework.beans.factory.annotation.Autowired(required=true)}
这是我的课程,希望有人能帮助我理解这些自动装配的东西......
public abstract class BaseDAO<E>
{
public abstract void delete( int id );
public abstract void save( E entity );
public abstract List<E> list();
}
public abstract class BaseService<E, D extends BaseDAO<E>>
{
private final D dao;
protected BaseService( D dao )
{
this.dao = dao;
}
@Transactional
public void delete( int id )
{
dao.delete( id );
}
@Transactional
public void save( E entity )
{
dao.save( entity );
}
@Transactional
public List<E> list()
{
return dao.list();
}
}
@Repository
public class CategoryDAO extends BaseDAO<Category>
{
@Autowired
private SessionFactory sessionFactory;
@Override
public void delete( int id )
{
Category category = ( Category ) sessionFactory.getCurrentSession().load( Category.class, id );
if ( category != null )
{
sessionFactory.getCurrentSession().delete( category );
}
}
@Override
public void save( Category category )
{
sessionFactory.getCurrentSession().save( category );
}
@Override
public List<Category> list()
{
return sessionFactory.getCurrentSession().createQuery( "from Category" ).list();
}
}
@Service
public class CategoryService extends BaseService<Category, CategoryDAO>
{
@Autowired
public CategoryService( CategoryDAO dao )
{
super( dao );
}
}
更新
Servlet 上下文确实包含这一行:<context:component-scan base-package="com.example" />
测试上下文(我正在使用 maven)确实包含这一行:<context:annotation-config />
替换为此异常中的结果<context:annotation-config />
:<context:component-scan base-package="com.example" />
org.springframework.beans.factory.BeanCreationException: Could not autowire field:
private com.example.model.CategoryService
com.example.controller.ExampleController.categoryService;
nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating bean
with name 'categoryService' defined in file
[/home/danny/example/target/classes/com/example/model/CategoryService.class]:
Initialization of bean failed; nested exception is
org.springframework.aop.framework.AopConfigException: Could not generate CGLIB
subclass of class [class com.example.model.CategoryService]: Common causes of
this problem include using a final class or a non-visible class; nested exception
is java.lang.IllegalArgumentException: Superclass has no null constructors but no
arguments were given
更新2
我仍然收到此异常,这是我的新代码(仅更改了类):
public abstract class BaseService<E, D extends BaseDAO<E>>
{
private D dao;
/*protected BaseService( D dao )
{
this.dao = dao;
}*/
protected BaseService(){}
protected void setDAO( D dao )
{
this.dao = dao;
}
@Transactional
public void delete( int id )
{
dao.delete( id );
}
@Transactional
public void save( E entity )
{
dao.save( entity );
}
@Transactional
public List<E> list()
{
return dao.list();
}
}
@Service
public class CategoryService extends BaseService<Category, CategoryDAO>
{
@Autowired
public CategoryService( CategoryDAO dao )
{
setDAO( dao );
}
}
更新3
解决方案:
public abstract class BaseService<E, D extends BaseDAO<E>>
{
protected D dao;
public BaseService()
{
}
protected D getDao()
{
return dao;
}
@Autowired
protected void setDAO( D dao )
{
this.dao = dao;
}
// ...
}
@Service
public class CategoryService extends BaseService<Category, CategoryDAO>
{
public CategoryService()
{
setDAO( dao );
}
}