当前位置: 代码迷 >> J2SE >> Invalid property 'allcountService' of bean class [com.lsxy.action.UserOperAction,该如何处理
  详细解决方案

Invalid property 'allcountService' of bean class [com.lsxy.action.UserOperAction,该如何处理

热度:316   发布时间:2016-04-24 12:33:55.0
Invalid property 'allcountService' of bean class [com.lsxy.action.UserOperAction
<bean id="allcountService" class="com.lsxy.service.impl.AllcountServiceImpl">
<property name="allcountDao" ref="allcountDao"></property>
</bean>


<bean id="allcountDao" class="com.lsxy.dao.impl.AllcountDaoImpl"
parent="allDao">
</bean>

<property name="allcountService" ref="allcountService"></property>

------解决方案--------------------
<bean id="allcountDao" class="com.lsxy.dao.impl.AllcountDaoImpl"
parent="allDao">
<property name="allcountService" ref="allcountService"></property>
</bean>
  相关解决方案