fix: 修复服务端注册contextPath为空问题

This commit is contained in:
byteblogs168 2023-01-10 09:04:38 +08:00
parent 1a049541c1
commit 33013948cd
2 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,7 @@ CREATE TABLE `server_node`
`group_name` varchar(64) NOT NULL COMMENT '组名称',
`host_id` varchar(64) NOT NULL COMMENT '主机id',
`host_ip` varchar(64) NOT NULL COMMENT '机器ip',
`context_path` varchar(256) NOT NULL COMMENT '客户端上下文路径 server.servlet.context-path',
`context_path` varchar(256) NOT NULL DEFAULT '/' COMMENT '客户端上下文路径 server.servlet.context-path',
`host_port` int(16) NOT NULL COMMENT '机器端口',
`expire_at` datetime NOT NULL COMMENT '过期时间',
`node_type` tinyint(4) NOT NULL COMMENT '节点类型 1、客户端 2、是服务端',

View File

@ -51,6 +51,7 @@ public class ServerRegisterNodeHandler implements Lifecycle {
serverNode.setHostPort(systemProperties.getNettyPort());
serverNode.setNodeType(NodeTypeEnum.SERVER.getType());
serverNode.setCreateDt(LocalDateTime.now());
serverNode.setContextPath(StrUtil.EMPTY);
serverRegisterNode.scheduleAtFixedRate(()->{
try {