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
  • 相关阅读:
    POJ 1269 Intersecting Lines
    POJ 3304 Segments
    BZOJ 4591 超能粒子炮·改
    POJ 2318 TOYS/POJ 2398 Toy Storage
    BZOJ 1044 木棍分割
    BZOJ 2836 魔法树
    BZOJ 3176 Sort
    BZOJ 1668 馅饼里的财富
    Flood-it!
    Eight
  • 原文地址:https://www.cnblogs.com/leigepython/p/11410399.html
Copyright © 2011-2022 走看看