我有一个Mule配置,其中有2个流: - 一个流程公开REST服务: -
<flow name="restServiceFlow1" doc:name="restFlow1">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8082" doc:name="HTTP"/>
<jersey:resources doc:name="REST">
<component class="com.test.services.schema.maindata.v1.Impl.MainDataImpl"/>
</jersey:resources>
</flow>
和另一个通过将JSON请求放入文件入站来使用服务的流程: -
<flow name="restFlow2">
<file:inbound-endpoint path="E:\backup\test" responseTimeout="10000" connector-ref="File_Global">
<file:filename-regex-filter pattern="aa.txt" caseSensitive="false"/>
</file:inbound-endpoint>
<json:json-to-object-transformer returnClass="java.util.HashMap"/>
<foreach collection="#[payload.insertDataRequest]">
<http:outbound-endpoint exchange-pattern="request-response"
contentType="application/json" method="GET"
address="http://localhost:8082/getData/insert/?id=#[payload.id]&name=#[payload.name]&age=#[payload.age]&designation=#[payload.designation]"/>
</foreach>
</flow>
现在要求在文件入站端点之后检查内容类型是否内容类型是JSON ...如果内容Type不等于JSON,那么它将在日志中显示不是JSON消息..
我尝试过以下方法: - 我在文件入站端点后放置了一个选择路由器: -
<when evaluator="groovy" expression="payload.ContentType=='JSON'">
检查有效负载的内容类型,如果内容类型不是JSON,它将在日志中显示不是JSON,因此我将日志放在Default of choice路由器中...但是我得到以下异常: -
Exception stack is:
1. No such property: ContentType for class: org.mule.transport.file.ReceiverFileInputStream (groovy.lang.MissingPropertyException)
org.codehaus.groovy.runtime.ScriptBytecodeAdapter:50 (null)
2. groovy.lang.MissingPropertyException: No such property: ContentType for class: org.mule.transport.file.ReceiverFileInputStream (javax.script.ScriptException)
org.codehaus.groovy.jsr223.GroovyScriptEngineImpl:323 (http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/script/ScriptException.html)
现在有没有更好的方法来检查文件入站端点后的内容类型???请建议一些更好的方法...请注意我不想使用is-json-filter
,因为我想控制其他条件并在日志中显示消息......
答案 0 :(得分:5)
您仍然可以使用is-json-filter
,但需要将其包装在邮件过滤器中,以便您可以控制“其他”路径:
<message-filter onUnaccepted="noJsonFlow" throwOnUnaccepted="false">
<json:is-json-filter />
</message-filter>