cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 ‘dubbo:applicatio

在写dubbo的服务提供者的.xml文件报这个错
cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 ‘dubbo:applicatio
是因为这里写错了:
cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 ‘dubbo:applicatio
正确如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
    <!-- 提供方应用信息,用于计算依赖关系       通过dubbo发布服务(项目模块名)-->
    <dubbo:application name="dubbo_provider1"  />

    <!-- 使用multicast广播注册中心暴露服务地址      指定注册中心-->
    <dubbo:registry address="multicast://224.5.6.7:1234" />

    <!-- 用dubbo协议在20880端口暴露服务     指定服务的协议:dubbo协议(固定)和使用的端口号(随意)-->
    <dubbo:protocol name="dubbo" port="20880" />

    <!-- 声明需要暴露的服务接口       注册服务到注册中心  -->
    <dubbo:service interface="com.liziyi.service.DemoService" ref="demoService" />

    <!-- 和本地bean一样实现服务    服务提供者-->
    <bean id="demoService" class="com.liziyi.service.impl.DemoServiceImpl" />
</beans>
上一篇:net 架构师-数据库-sql server-SQL Server中的对象


下一篇:数据结构第一章 绪论 基本概念与算法分析