今天学ssh框架例子,搭建好后启动tomcat可以访问,就在配置applicationContext.xml时报错.
具体错误信息:Nosetterfoundforproperty'yonghuDao'inclass'ssh.test.service.impl.YonghuService...
具体错误信息:No setter found for property 'yonghuDao' in class 'ssh.test.service.impl.YonghuServiceImpl'
代码:
<bean id="yonghuDao" class="ssh.test.dao.impl.YonghuDaoImpl">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean id="YonghuService" class="ssh.test.service.impl.YonghuServiceImpl">
<property name="yonghuDao" ref="yonghuDao"></property>(这行报错)
</bean>
这个问题已经解决了.谢谢. 展开
代码:
<bean id="yonghuDao" class="ssh.test.dao.impl.YonghuDaoImpl">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean id="YonghuService" class="ssh.test.service.impl.YonghuServiceImpl">
<property name="yonghuDao" ref="yonghuDao"></property>(这行报错)
</bean>
这个问题已经解决了.谢谢. 展开
2个回答
展开全部
"ssh.test.service.impl.YonghuServiceImpl"这个类里要有‘yonghuDao’这个变量,并且此变量要添加set方法,才能正确注入。报错信息的意思就是你没写set方法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询