在Java端配置Granite DS 2.2.0中的异常转换器时遇到问题。我正在使用Weblogic
完成的步骤:
1.实施ExceptionConverter
2.在granite-config.xml旁边添加:
<exception-converters>
<exception-converter type="<my converter full class name>"/>
</exception-converters>
3。创建空的WEB-INF / granite-config.properties
有什么想法吗?
感谢。
答案 0 :(得分:1)
<强>解决强>:
它应该在服务中使用扩展服务异常处理程序 -
config.xml ,默认值不处理异常转换器。
<factory id="..." class="...">
<properties>
<service-exception-handler>org.granite.messaging.service.ExtendedServiceExceptionHandler</service-exception-handler>
</properties>
</factory>
PS。感谢wdrai