client配置列表
<motan:referer/>
<motan:basicReferer/>
protocol、basic referer、extConfig、referer中定义相同属性时,优先级为referer > extConfig > basic referer > protocol
Property name | Type | Default | Comment |
---|---|---|---|
id | String | 服务引用 BeanId | |
protocol | String | motan | 使用的协议 |
interface | Class | 服务接口名 | |
client | String | 客户端类型 | |
directUrl | String | 点对点直连服务提供地址 | |
basicReferer | String | 基本 referer 配置 | |
extConfig | String | 扩展配置 | |
proxy | String | 代理类型 | |
group | String | default_rpc | 服务分组 |
version | String | 1.0 | 版本 |
throwException | String | true | 抛出异常 |
requestTimeout | String | 200 | 请求超时时间(毫秒) |
connectTimeout | String | 1000 | 连接超时时间(毫秒) |
retries | int | 0 | 重试次数 |
filter | String | 过滤器配置 | |
listener | String | 监听器配置 | |
connections | int | 连接数限制,0表示共享连接,否则为该服务独享连接数;默认共享 | |
application | String | motan | 应用信息 |
module | String | motan | 模块信息 |
shareChannel | boolean | false | 是否共享channel |
timeout | int | (目前未用)方法调用超时时间 | |
actives | int | 0 | 最大请求数,0为不做并发限制 |
async | boolean | false | 方法是否异步 |
mock | String | false | 设为true,表示使用缺省Mock类名,即:接口名+Mock 后缀,服务接口调用失败Mock实现类 |
check | boolean | true | 检查服务提供者是否存在 |
registry | String | 注册中心的id 列表,多个用“,”分隔,如果为空,则使用所有的配置中心 | |
register | boolean | true | 在该注册中心上服务是否暴露 |
subscribe | boolean | true | 在该注册中心上服务是否引用 |
accessLog | String | false | 设为true,将向logger 中输出访问日志 |
usegz | boolean | false | 是否开启gzip压缩.只有compressMotan的codec才能支持 |
mingzSize | int | 1000 | 开启gzip压缩的阈值.usegz开关开启,且传输数据大于此阈值时,才会进行gzip压缩。只有compressMotan的codec才能支持 |
codec | String | motan | 协议编码 |
<motan:method/>需要定义在motan:referer内,用于控制某个函数的行为
Property name | Type | Default | Comment |
---|---|---|---|
name | String | 函数名 | |
argumentTypes | String | 参数类型(逗号分隔), 无参数用void. 如果方法无重载,则可不写 | |
requestTimeout | int | 200 | 请求超时时间(毫秒) |
connectTimeout | int | 1000 | 连接超时时间(毫秒) |