我使用框架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班级存在,我也有弹簧罐;不过,我不知道问题出在哪里。
答案 0 :(得分:0)
看起来你的com.dao.StudentDaoImpl
课程实际上是com.dao
以外的其他课程。或者类别名称不同,您说StudentDao the class exists
,但您在StudentDaoImpl
中使用了spring.xml
名称。所以检查包和类名。