parent
2f6b4c0c43
commit
d50adb7c83
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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") {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue