-
Notifications
You must be signed in to change notification settings - Fork 26.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancement and Bugfix in 2.7.1 ( Part 3 ) (#3675)
* Polish /#1306 : @reference bean name conflict * Polish /#3582 : service register support on nacos * Polish /#3582 : Add license header and remove hard-code version * Polish /#3582 : Remove junit * Polish /#3582 : Translate to English
- Loading branch information
1 parent
fcdf9c8
commit 7fefb81
Showing
20 changed files
with
1,288 additions
and
148 deletions.
There are no files selected for viewing
142 changes: 142 additions & 0 deletions
142
...va/org/apache/dubbo/config/spring/beans/factory/annotation/AnnotationBeanNameBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.dubbo.config.spring.beans.factory.annotation; | ||
|
||
import org.apache.dubbo.common.Constants; | ||
import org.apache.dubbo.config.annotation.Reference; | ||
import org.apache.dubbo.config.annotation.Service; | ||
import org.apache.dubbo.registry.Registry; | ||
|
||
import org.springframework.core.env.Environment; | ||
|
||
import static org.apache.dubbo.common.Constants.CONSUMERS_CATEGORY; | ||
import static org.apache.dubbo.common.Constants.DEFAULT_PROTOCOL; | ||
import static org.apache.dubbo.common.Constants.PROVIDERS_CATEGORY; | ||
import static org.apache.dubbo.config.spring.util.AnnotationUtils.resolveInterfaceName; | ||
import static org.springframework.util.StringUtils.arrayToCommaDelimitedString; | ||
import static org.springframework.util.StringUtils.hasText; | ||
|
||
/** | ||
* The Bean Name Builder for the annotations {@link Service} and {@link Reference} | ||
* <p> | ||
* The naming rule is consistent with the the implementation {@link Registry} that is based on the service-name aware | ||
* infrastructure, e.g Spring Cloud, Cloud Native and so on. | ||
* <p> | ||
* The pattern of bean name : ${category}:${protocol}:${serviceInterface}:${version}:${group}. | ||
* <p> | ||
* ${version} and ${group} are optional. | ||
* | ||
* @since 2.6.6 | ||
*/ | ||
class AnnotationBeanNameBuilder { | ||
|
||
private static final String SEPARATOR = ":"; | ||
|
||
// Required properties | ||
|
||
private final String category; | ||
|
||
private final String protocol; | ||
|
||
private final String interfaceClassName; | ||
|
||
// Optional properties | ||
|
||
private String version; | ||
|
||
private String group; | ||
|
||
private Environment environment; | ||
|
||
private AnnotationBeanNameBuilder(String category, String protocol, String interfaceClassName) { | ||
this.category = category; | ||
this.protocol = protocol; | ||
this.interfaceClassName = interfaceClassName; | ||
} | ||
|
||
private AnnotationBeanNameBuilder(Service service, Class<?> interfaceClass) { | ||
this(PROVIDERS_CATEGORY, resolveProtocol(service.protocol()), resolveInterfaceName(service, interfaceClass)); | ||
this.group(service.group()); | ||
this.version(service.version()); | ||
} | ||
|
||
private AnnotationBeanNameBuilder(Reference reference, Class<?> interfaceClass) { | ||
this(CONSUMERS_CATEGORY, resolveProtocol(reference.protocol()), resolveInterfaceName(reference, interfaceClass)); | ||
this.group(reference.group()); | ||
this.version(reference.version()); | ||
} | ||
|
||
public static AnnotationBeanNameBuilder create(Service service, Class<?> interfaceClass) { | ||
return new AnnotationBeanNameBuilder(service, interfaceClass); | ||
} | ||
|
||
public static AnnotationBeanNameBuilder create(Reference reference, Class<?> interfaceClass) { | ||
return new AnnotationBeanNameBuilder(reference, interfaceClass); | ||
} | ||
|
||
private static void append(StringBuilder builder, String value) { | ||
if (hasText(value)) { | ||
builder.append(SEPARATOR).append(value); | ||
} | ||
} | ||
|
||
public AnnotationBeanNameBuilder group(String group) { | ||
this.group = group; | ||
return this; | ||
} | ||
|
||
public AnnotationBeanNameBuilder version(String version) { | ||
this.version = version; | ||
return this; | ||
} | ||
|
||
public AnnotationBeanNameBuilder environment(Environment environment) { | ||
this.environment = environment; | ||
return this; | ||
} | ||
|
||
/** | ||
* Resolve the protocol | ||
* | ||
* @param protocols one or more protocols | ||
* @return if <code>protocols</code> == <code>null</code>, it will return | ||
* {@link Constants#DEFAULT_PROTOCOL "dubbo"} as the default protocol | ||
* @see Constants#DEFAULT_PROTOCOL | ||
*/ | ||
private static String resolveProtocol(String... protocols) { | ||
String protocol = arrayToCommaDelimitedString(protocols); | ||
return hasText(protocol) ? protocol : DEFAULT_PROTOCOL; | ||
} | ||
|
||
/** | ||
* Build bean name while resolve the placeholders if possible. | ||
* | ||
* @return pattern : ${category}:${protocol}:${serviceInterface}:${version}:${group} | ||
*/ | ||
public String build() { | ||
// Append the required properties | ||
StringBuilder beanNameBuilder = new StringBuilder(category); | ||
append(beanNameBuilder, protocol); | ||
append(beanNameBuilder, interfaceClassName); | ||
// Append the optional properties | ||
append(beanNameBuilder, version); | ||
append(beanNameBuilder, group); | ||
String beanName = beanNameBuilder.toString(); | ||
// Resolve placeholders | ||
return environment != null ? environment.resolvePlaceholders(beanName) : beanName; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 0 additions & 113 deletions
113
.../java/org/apache/dubbo/config/spring/beans/factory/annotation/ServiceBeanNameBuilder.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.