zoukankan      html  css  js  c++  java
  • 项目中dubbo的标准配置

    # Spring boot application
    spring:
    application:
    name: hello-dubbo-service-user-provider

    # UserService service version
    user:
    service:
    version: 1.0.0

    # Dubbo Config properties
    dubbo:
    ## Base packages to scan Dubbo Component:@com.alibaba.dubbo.config.annotation.Service
    scan:
    basePackages: com.funtl.hello.dubbo.service.user.provider.api
    ## ApplicationConfig Bean
    application:
    id: hello-dubbo-service-user-provider
    name: hello-dubbo-service-user-provider
    qos-port: 22222
    qos-enable: true
    ## ProtocolConfig Bean
    protocol:
    id: dubbo
    name: dubbo
    port: 12346
    status: server
    serialization: kryo
    ## RegistryConfig Bean
    registry:
    id: zookeeper
    address: zookeeper://192.168.23.144:2181?backup=192.168.23.144:2182,192.168.23.144:2183
    # Enables Dubbo All Endpoints
    management:
    endpoint:
    dubbo:
    enabled: true
    dubbo-shutdown:
    enabled: true
    dubbo-configs:
    enabled: true
    dubbo-services:
    enabled: true
    dubbo-references:
    enabled: true
    dubbo-properties:
    enabled: true
    # Dubbo Health
    health:
    dubbo:
    status:
    ## StatusChecker Name defaults (default : "memory", "load" )
    defaults: memory
    ## StatusChecker Name extras (default : empty )
    extras: load,threadpool
  • 相关阅读:
    zabbix 微信告警
    mongodb 的数据备份与还原
    Templates
    Rsyslog 基本结构
    matplotlib绘图学习
    pyhon 简介
    Pygame (Python编程从入门到实践)
    AttributeError: 'pygame.Surface' object has no attribute 'rect'
    PYTHON CLIENT API
    SALT.STATES.CMD模块
  • 原文地址:https://www.cnblogs.com/leigepython/p/11410399.html
Copyright © 2011-2022 走看看