描述资源路径位置类型cvc-complex-type.2.4

时间:2015-04-16 10:54:27

标签: eclipse spring maven java-ee

嘿,当我在applicationContext.xml中编写标记时,我收到了错误"描述资源路径位置类型 cvc-complex-type.2.4.a:从元素'属性'"开始发现无效内容。从日食我不知道为什么。

这是applicationConext.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans   
http://www.springframework.org/schema/beans/spring-beans.xsd">

<bean id="dao" class="org.gestion.bp.dao.BanqueDaoImp"></bean>
<bean id="metier" class="org.gestion.bp.metier.BanqueMetierImp"></bean>
    <property name="dao" ref="dao"></property>
</beans>

1 个答案:

答案 0 :(得分:0)

下面:

<bean id="metier" class="org.gestion.bp.metier.BanqueMetierImp"></bean>
    <property name="dao" ref="dao"></property>
</beans>

您已在属性之前使用</bean> 关闭'bean'。它应该是:

<bean id="metier" class="org.gestion.bp.metier.BanqueMetierImp">
    <property name="dao" ref="dao"></property>
</bean>
</beans>