This is an automated email from the ASF dual-hosted git repository.
liujun pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git.
from cea3de7 Refactor, revert ReferenceConfigCache package change
new 288aa4a refactor online and offline
new b797852 fix unit test for online and offline
new c152c3c Merge pull request #5 from cvictory/merge-3.x
new c30a430 ExtensionLoader try to load resource from itself ClassLoader
first
new 88c2386 Merge branch 'merge-3.x' of
github.com:chickenlj/incubator-dubbo into merge-3.x
new fe2b127 ExtensionLoader load META-INF/dubbo/internal/ extension from
ExtensionLoader ClassLoader first
new 128a50a update comment
new c18e6c3 to process a scenario when service type is not available and
service invocation is not generic either
new 0ad3577 enhance generic invocation check
new e826d08 to process a scenario when service type is not available and
service invocation is not generic either
new 1090348 Merge branch 'merge-3.x'
new 02eabd6 generic codec & bootstrap api
The 12 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:
.../org/apache/dubbo/bootstrap/DubboBootstrap.java | 9 +++
.../org/apache/dubbo/config/ReferenceConfig.java | 8 +-
.../org/apache/dubbo/config/ServiceConfig.java | 8 +-
.../dubbo/config/utils/ReferenceConfigCache.java | 2 +
.../apache/dubbo/config/spring/ReferenceBean.java | 5 ++
.../org/apache/dubbo/common/ServiceDescriptor.java | 94 ++++++++++++++++++++++
.../src/main/java/org/apache/dubbo/common/URL.java | 16 +---
.../common/config/OrderedPropertiesProvider.java | 5 ++
.../configcenter/DynamicConfigurationFactory.java | 2 +-
.../dubbo/common/constants/CommonConstants.java | 2 +
.../dubbo/common/extension/ExtensionLoader.java | 39 +++++----
.../apache/dubbo/common/utils/ReflectUtils.java | 10 +++
.../dubbo/config/service/ReferenceConfig.java | 5 +-
.../apache/dubbo/rpc/model/MethodDescriptor.java | 9 ++-
.../apache/dubbo/rpc/model/ServiceMetadata.java | 45 ++---------
.../store/InMemoryWritableMetadataService.java | 5 +-
.../store/RemoteWritableMetadataService.java | 5 +-
.../org/apache/dubbo/qos/command/impl/Offline.java | 38 ++++-----
.../org/apache/dubbo/qos/command/impl/Online.java | 39 ++++-----
.../dubbo/qos/command/impl/TestInterface.java | 9 +++
.../dubbo/qos/command/impl/TestInterface2.java | 9 +++
.../org/apache/dubbo/rpc/ClusterInterceptor.java | 11 ++-
.../src/main/java/org/apache/dubbo/rpc/Filter.java | 25 +++---
.../main/java/org/apache/dubbo/rpc/Invocation.java | 12 +++
.../java/org/apache/dubbo/rpc/RpcInvocation.java | 12 +++
.../apache/dubbo/rpc/filter/GenericImplFilter.java | 39 ++++++---
.../org/apache/dubbo/rpc/support/RpcUtils.java | 21 +++++
.../protocol/dubbo/DecodeableRpcInvocation.java | 37 +++++----
.../dubbo/rpc/protocol/dubbo/DubboCodec.java | 3 +-
29 files changed, 363 insertions(+), 161 deletions(-)
create mode 100644
dubbo-common/src/main/java/org/apache/dubbo/common/ServiceDescriptor.java
create mode 100644
dubbo-plugin/dubbo-qos/src/test/java/org/apache/dubbo/qos/command/impl/TestInterface.java
create mode 100644
dubbo-plugin/dubbo-qos/src/test/java/org/apache/dubbo/qos/command/impl/TestInterface2.java