This is an automated email from the ASF dual-hosted git repository.
laurence pushed a change to branch rest-protocol
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git
from d72bde273 update go.mod dependency monthly
new 3d0694463 refactor rest
new 0f959bed5 jj
new b4b37153e refactor: rest protocol
new 73d133c5d refactor: rest protocol1
new 51a026633 ok
new bc0100c01 merge 3.0
new f97bc140c clean code
new cce3f9092 Merge branch '3.0' into feature/refactor_rest
new e42b3279a formatter
new 277195201 [issue-315] 抽取rest方法级别配置
new 509d69f5c Resolved merge conflict by incorporating both suggestions.
new bff05f857 Merge branch 'rest-protocol-adapter' into
feature/refactor_rest
new 3992ad8d3 Merge pull request #1 from PhilYue/feature/refactor_rest
new c7a2b81aa [issue-315] 抽取rest方法级别配置
new c41e47c6e [issue-315] 抽取rest方法级别配置
new 526b6eb81 Remove useless code, rename
new da0cacf19 import formtter
new af9b6c7ee Merge remote-tracking branch 'upstream/3.0' into
rest-protocol-adapter
new ed36a608e Merge remote-tracking branch 'origin/rest-protocol-adapter'
into rest-protocol-adapter
new 1d783a383 import formtter
new 44507f704 remove comment abstract public function
new 8e2c5c19d Add connection timeout field, fix comment logic
new 9d84fb4c3 remove comment
new d7802b4a3 repair connectTime
new 3b78e1182 add unit time
new 3e261988f Merge remote-tracking branch 'upstream/3.0' into
rest-protocol-adapter merge 3.0
new 64c21b629 Extract configuration
new faf587852 fix clint
new 0137dc462 fix ci
new fce4b3811 fix go fmt
new 98aa583d8 add license
new 061f3cd9e Merge remote-tracking branch 'upstream/3.0' into
rest-protocol-adapter
new 8031f84f7 Merge remote-tracking branch 'origin/rest-protocol-adapter'
into rest-protocol-adapter
new 7c07cf686 fix golang lint
new 42b787605 change make length
new e0df91eab clean code
new e8179974d fix license
new efc451328 Merge pull request #1855 from complone/rest-protocol-adapter
The 8637 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Makefile => build/Makefile | 2 +
build/go_build_dubbo_apache_org_dubbo_go_v3 | 1 +
.../go_build_dubbo_apache_org_dubbo_go_v3_protocol | Bin 0 -> 288036 bytes
common/proxy/proxy.go | 1 +
config/config_resolver.go | 2 +-
config/consumer_config.go | 2 +
.../utils.go => config/parsers/yaml/yaml.go | 35 +-
config/rest_config.go | 314 ++++++++++++++++
config/root_config.go | 23 +-
config/router_config_test.go | 8 -
protocol/jsonrpc/jsonrpc_protocol_test.go | 1 +
protocol/rest/client/client_impl/resty_client.go | 20 +-
.../rest/config/common.go | 12 +-
protocol/rest/config/reader/rest_config_reader.go | 44 ++-
.../rest/config/reader/rest_config_reader_test.go | 50 ---
.../config/reader/testdata/consumer_config.yml | 5 +-
.../config/reader/testdata/provider_config.yml | 5 +-
protocol/rest/config/rest_config.go | 153 --------
protocol/rest/rest_invoker.go | 2 +-
protocol/rest/rest_invoker_test.go | 396 ++++++++++-----------
protocol/rest/rest_protocol.go | 29 +-
protocol/rest/rest_protocol_test.go | 312 ++++++++--------
.../rest/rest_server_fac.go | 2 +-
.../server/{server_impl => }/go_restful_server.go | 17 +-
.../{server_impl => }/go_restful_server_test.go | 7 +-
protocol/rest/server/rest_server.go | 36 +-
26 files changed, 803 insertions(+), 676 deletions(-)
copy Makefile => build/Makefile (98%)
create mode 100755 build/go_build_dubbo_apache_org_dubbo_go_v3
create mode 100644 build/go_build_dubbo_apache_org_dubbo_go_v3_protocol
copy filter/adaptivesvc/limiter/utils.go => config/parsers/yaml/yaml.go (62%)
create mode 100644 config/rest_config.go
copy config/config_setter.go => protocol/rest/config/common.go (81%)
delete mode 100644 protocol/rest/config/reader/rest_config_reader_test.go
delete mode 100644 protocol/rest/config/rest_config.go
rename common/extension/rest_server.go => protocol/rest/rest_server_fac.go
(98%)
rename protocol/rest/server/{server_impl => }/go_restful_server.go (91%)
rename protocol/rest/server/{server_impl => }/go_restful_server_test.go (87%)