如果您指的是带
@Entity注释的类,
<context:component-scan>则与它们无关。
@Entity类是由Hibernate发现的,因此您需要配置Hibernate,而不是Spring。
如果您通过JPA使用Hibernate(即具有
persistence.xml),则需要添加以下行
persistence.xml以扫描
/WEB-INF/lib/yourFileWithEntities.jar实体类:
<jar-file>lib/yourFileWithEntities.jar</jar-file>



