标签:范围 depend pos osi strong test hal final pre
之前是使用 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 )
标签:范围 depend pos osi strong test hal final pre
原文地址:https://www.cnblogs.com/zhangXingSheng/p/12215079.html