zoukankan      html  css  js  c++  java
  • Dubbox服务的消费方配置

    在src/main/resources下创建applicationContext-web.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/dubbo" xmlns: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">

     

        <mvc:annotation-driven >

            <mvc:message-converters register-defaults="false">

                <bean class="org.springframework.http.converter.StringHttpMessageConverter"> 

                    <constructor-arg value="UTF-8" />

                </bean> 

            </mvc:message-converters>

        </mvc:annotation-driven>

        <!-- 引用dubbo 服务 -->

        <dubbo:application name="dubboxdemo-web" />

        <dubbo:registry address="zookeeper://192.168.25.132:2181"/>

         <dubbo:annotation package="cn.itcast.dubboxdemo.controller" />

    </beans>

  • 相关阅读:
    Linux route
    python 实现自定义切片类
    python 自省机制
    python 实例方法、静态方法、类方法
    python 动态语言和协议编程
    python 鸭子类型
    信息论
    CRF keras代码实现
    CRF 详细推导、验证实例
    attention 汇总(持续)
  • 原文地址:https://www.cnblogs.com/cn-chy-com/p/11118683.html
Copyright © 2011-2022 走看看