Co-authored-by: Cyrus <yecity@gmail.com>
This commit is contained in:
hyhnet 2024-03-10 11:22:59 +08:00 committed by GitHub
parent 2f6b4c0c43
commit d50adb7c83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View File

@ -218,7 +218,7 @@ public class ModuleConfig extends AbstractConfig {
/**
* Whether start module in background.
* If start in backgound, do not await finish on Spring ContextRefreshedEvent.
* If start in background, do not await finish on Spring ContextRefreshedEvent.
*
* @see org.apache.dubbo.config.spring.context.DubboDeployApplicationListener
*/

View File

@ -64,7 +64,7 @@ public class Main {
for (int i = 0; i < args.length; i++) {
containers.add(LOADER.getExtension(args[i]));
}
logger.info("Use container type(" + Arrays.toString(args) + ") to run dubbo serivce.");
logger.info("Use container type(" + Arrays.toString(args) + ") to run dubbo service.");
if ("true".equals(System.getProperty(SHUTDOWN_HOOK_KEY))) {
Runtime.getRuntime().addShutdownHook(new Thread("dubbo-container-shutdown-hook") {

View File

@ -27,7 +27,7 @@ import java.util.Map;
import static org.apache.dubbo.metadata.annotation.processing.util.TypeUtils.isPrimitiveType;
/**
* {@link TypeBuilder} for Java {@link PrimitiveType primitve type}
* {@link TypeBuilder} for Java {@link PrimitiveType primitive type}
*
* @since 2.7.6
*/

View File

@ -436,7 +436,7 @@ class ExchangeCodecTest extends TelnetCodecTest {
Assertions.assertEquals(response.getStatus(), obj.getStatus());
Assertions.assertEquals(response.isHeartbeat(), obj.isHeartbeat());
Assertions.assertEquals(person, obj.getResult());
// encode response verson ??
// encode response version ??
// Assertions.assertEquals(response.getProtocolVersion(), obj.getVersion());
future.cancel();

View File

@ -43,7 +43,7 @@ import static org.springframework.beans.factory.BeanFactoryUtils.beansOfTypeIncl
import static org.springframework.util.ClassUtils.isPrimitiveOrWrapper;
/**
* Abstract Dubbo Meatadata
* Abstract Dubbo Metadata
*
* @since 2.7.0
*/