在写dubbo的服务提供者的.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" 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>