博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ActiveMQ message trust Error
阅读量:5925 次
发布时间:2019-06-19

本文共 809 字,大约阅读时间需要 2 分钟。

hot3.png

####错误如下

org.springframework.jms.support.converter.MessageConversionException: Could not convert JMS message; nested exception is javax.jms.JMSException: Failed to build body from content. Serializable class not available to broker. Reason: java.lang.ClassNotFoundException: Forbidden class com.mercury.mq.service.MyMessage! This class is not trusted to be serialized as ObjectMessage payload. Please take a look at http://activemq.apache.org/objectmessage.html for more information on how to configure trusted classes.

解决方案

//工厂方法中设置setTrustAllPackages(),true表示信任所有package activeMQConnectionFactory.setTrustAllPackages(true);  // 另外也可以设置信任列表 factory.setTrustedPackages(new ArrayList(Arrays.asList("org.apache.activemq.test,org.apache.camel.test".split(","))));

转载于:https://my.oschina.net/iak1001/blog/1865173

你可能感兴趣的文章
第七周
查看>>
P1631 序列合并
查看>>
P1281 书的复制
查看>>
mongo同步到es
查看>>
用C#下的Raw
查看>>
mysql / sqlserver / oracle 常见数据库分页
查看>>
combo
查看>>
spring mvc 支持json
查看>>
Access数据库SQL注入(Access SQL Injection)
查看>>
个人学习C++过程中对const的总结:初始化系列之用字面值常量与其他类型的值初始化的区别(一)...
查看>>
自动化学习笔记之接口测试(一)
查看>>
深度学习常用方法
查看>>
完成端口模型开发
查看>>
CentOS Linux release 7.6.1810全新安装 Zimbra 8.8.12邮箱
查看>>
出现蓝屏代码0x0000007b的原因及解决办法
查看>>
C++ File 类学习总结
查看>>
权限框架 - shiro 自定义realm
查看>>
获取系统资源APP
查看>>
HP Autonomy KeyView入门使用&Maven打包流程
查看>>
Unity3d有关图形尺寸大小的注意事项
查看>>