xmlns:dubbo=“http://dubbo.apache.org/schema/dubbo“报错

请先看看你有没有加dubbo的maven依赖,

官网在做这个demo的时候并没有说要加maven依赖,所以会xml中会报红

xmlns:dubbo="http://dubbo.apache.org/schema/dubbo"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd">

请先检查pom.xml有没有dubbo的maven依赖,如果没有,请加以下maven依赖


        
            org.apache.dubbo
            dubbo
            2.7.1
        

然后看看,报红部分是不是消失了!!!

你可能感兴趣的:(分布式,maven,dubbo)