构建路径不完整。找不到类文件

时间:2014-07-26 13:56:59

标签: spring

我使用框架Spring,现在正在将它用于一个小样本项目。但是我的spring.xml配置文件中出现错误:

Multiple annotations found at this line:
    - <bean class="com.dao.StudentDaoImpl" id="stdDaoBean" />
    - Build path is incomplete. Cannot find class file for 
     com.dao.StudentDaoImpl

我的代码是:

   <bean class="com.dao.StudentDaoImpl" id="stdDaoBean" />
    <bean class="com.service.StudentServiceImpl" id="stdServiceBean">
        <property name="studentDao" ref="stdDaoBean"></property>
    </bean>

StudentDao班级存在,我也有弹簧罐;不过,我不知道问题出在哪里。

1 个答案:

答案 0 :(得分:0)

看起来你的com.dao.StudentDaoImpl课程实际上是com.dao以外的其他课程。或者类别名称不同,您说StudentDao the class exists,但您在StudentDaoImpl中使用了spring.xml名称。所以检查包和类名。