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>

  • 相关阅读:
    tomcat进阶操作
    tomcat环境部署
    CentOS 7.2安装lepus数据库监控系统
    常见的Linux系统监控命令
    zabbix使用jmx监控tomcat
    zabbix配置文件详解
    zabbix2.2.22 升级3.0.18
    zabbix日志监控
    zabbix api的使用
    zabbix低级自动发现之mysql多实例
  • 原文地址:https://www.cnblogs.com/cn-chy-com/p/11118683.html
Copyright © 2011-2022 走看看