jboss Marshalling, 服务端收不到消息
Posted zhangxingsheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jboss Marshalling, 服务端收不到消息相关的知识,希望对你有一定的参考价值。
之前是使用 messagePack 序列化框架,今天想看看那 jboss Marshalling 序列化框架。
在 mvnrepository 中搜索 【marshalling serial 和 jboss-marshalling】,选择 最新版本
-----------------------------------------------marshalling serial------------------------------------------------------------------
------------------------------------------ jboss-marshalling----------------------------------------------------------
当把例子写好后发现服务端收不到消息,找了好久 才发现 marshalling serial 的 <scope> 是 test 范围
<!-- https://mvnrepository.com/artifact/org.jboss.marshalling/jboss-marshalling-serial --> <dependency> <groupId>org.jboss.marshalling</groupId> <artifactId>jboss-marshalling-serial</artifactId> <version>2.0.9.Final</version> <scope>test</scope> </dependency>
将<scope> 删除,或者改成 <scope>compile </scope> (默认:compile )
以上是关于jboss Marshalling, 服务端收不到消息的主要内容,如果未能解决你的问题,请参考以下文章
netty系列之:使用Jboss Marshalling来序列化java对象