跳至主要內容

Session相关

hylexus约 175 字小于 1 分钟

Session相关

传送门

本小节示例可以在 samples/jt-808-server-sample-customizedopen in new window 找到相关代码。

Jt808SessionManager

该组件用来管理每个终端的 TCP 连接。

要定制 Jt808SessionManager 只需自己声明一个 Jt808SessionManager 类型的Bean即可。

public class MySessionManager implements Jt808SessionManager {
    // ......
}
@Configuration
public class CustomizedDemoJt808Config extends Jt808ServerConfigurationSupport {
    
    @Override
    public Jt808SessionManager supplyJt808SessionManager() {
        return MySessionManager.getInstance();
    }
}

Jt808SessionManagerEventListener

该组件可以监听 Jt808Session添加移除关闭 事件。

@Slf4j
public class MyJt808SessionManagerEventListener implements Jt808SessionManagerEventListener {
    @Override
    public void onSessionAdd(@Nullable Jt808Session session) {
        if (session == null) {
            return;
        }
        log.info("[SessionAdd] terminalId = {}, sessionId = {}", session.getTerminalId(), session.getId());
    }
}
@Configuration
public class CustomizedDemoJt808Config extends Jt808ServerConfigurationSupport {
    
    @Override
    public Jt808SessionManagerEventListener supplyJt808SessionManagerEventListener() {
        return new MyJt808SessionManagerEventListener();
    }
}

传送门

本小节示例可以在 samples/jt-808-server-sample-customizedopen in new window 找到相关代码。