Dubbox服务的提供方配置

在src/main/resources下创建applicationContext-service.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:p="http://www.springframework.org/schema/p"

    xmlns:context="http://www.springframework.org/schema/context"

    xmlns:dubbo="http://code.alibabatech.com/schema/dubboxmlns:mvc="http://www.springframework.org/schema/mvc"

    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd

        http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd

        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    

    <dubbo:application name="dubboxdemo-service"/> //当前应用名称,配置为工程名称即可

   <dubbo:registry address="zookeeper://192.168.25.132:2181"/> //注册中心地址

   <dubbo:annotation package="cn.itcast.dubboxdemo.service" /> //业务逻辑实现类所在的包

</beans>

原文地址:https://www.cnblogs.com/cn-chy-com/p/11118646.html