Prune-ww

Results 4 comments of Prune-ww

@Jt808RequestHandlerMapping(msgType = 0x0200, versions = AUTO_DETECTION, desc = "位置信息上报(苏标)") public BuiltinMsg8001 t0200SU(Jt808RequestEntity req) { } @Jt808RequestHandlerMapping(msgType = 0x0200, versions = AUTO_DETECTION, desc = "位置信息上报(粤标)") public BuiltinMsg8001 t0200YUE(Jt808RequestEntity req) { }

或许可以用自定义的生命周期监听器来实现? @Override public boolean beforeDispatch(Jt808Request request) { return Jt808RequestLifecycleListener.super.beforeDispatch(request); } 例如根据消息头中的消息ID和终端手机号来判断接下来分发到哪个被@Jt808RequestHandlerMapping注解的方法处理。我对消息分发器不是很了解,请教一下作者这么做是否可以?

> 升级到 `v2.3.0-rc.6`,新增了配置项 `jt808.server.enabled = true | false`,单独的附件服务器示例如下: > > * [samples/jt-808-attachment-server-sample](https://github.com/hylexus/jt-framework/blob/d20c847a854caea6d6d6b974f95029487c1bf59d/samples/jt-808-attachment-server-sample/src/main/resources/application.yaml#L7) > > 或者可以试试 **xtream-codec** 非阻塞版本的苏标扩展: > > * [阻塞版](https://github.com/hylexus/xtream-codec/blob/025858042bd137efb61f0755d03b6c382aee2664/quick-start/jt/jt-808-attachment-server-quick-start-blocking/src/main/resources/application.yaml#L47) > * [非阻塞版](https://github.com/hylexus/xtream-codec/blob/025858042bd137efb61f0755d03b6c382aee2664/quick-start/jt/jt-808-attachment-server-quick-start-nonblocking/src/main/resources/application.yaml#L42) 好的,十分感谢,找时间去测试一下

> 升级到 `v2.3.0-rc.6`,新增了配置项 `jt808.server.enabled = true | false`,单独的附件服务器示例如下: > > * [samples/jt-808-attachment-server-sample](https://github.com/hylexus/jt-framework/blob/d20c847a854caea6d6d6b974f95029487c1bf59d/samples/jt-808-attachment-server-sample/src/main/resources/application.yaml#L7) > > 或者可以试试 **xtream-codec** 非阻塞版本的苏标扩展: > > * [阻塞版](https://github.com/hylexus/xtream-codec/blob/025858042bd137efb61f0755d03b6c382aee2664/quick-start/jt/jt-808-attachment-server-quick-start-blocking/src/main/resources/application.yaml#L47) > * [非阻塞版](https://github.com/hylexus/xtream-codec/blob/025858042bd137efb61f0755d03b6c382aee2664/quick-start/jt/jt-808-attachment-server-quick-start-nonblocking/src/main/resources/application.yaml#L42) xtream-codec的非阻塞版,springboot的版本是多少,2.7.18可用吗?jdk17可用吗