我正在尝试使用方法入口点解析器将有效负载转换为基类,如所请求方法的参数所示。但是,骡子并没有这样做。我能做错什么?
即,给出以下配置:
<mule ...>
<spring:bean id="FooBean" class="foo.Foo" />
<flow name="test">
<vm:inbound-endpoint name="test.Name" path="test.Path" exchange-pattern="request-response" />
<component>
<method-entry-point-resolver>
<include-entry-point method="bar" />
</method-entry-point-resolver>
<spring-object bean="FooBean" />
</component>
</flow>
</mule>
并给予foo.Foo:
package foo;
public class Foo {
public Foo() {
}
public String bar(final Object anObject) {
return "bar";
}
}
我希望以下测试能够通过,但事实并非如此。也就是说,我发送给流的有效负载是Integer
,我期待Mule将其作为参数传递给Foo::bar
:
@Test
public void methodEntryPointResolverUpcasts() throws MuleException {
final MuleClient client = muleContext.getClient();
final MuleMessage reply = client.send("vm://test.Path", new Integer(1), null, RECEIVE_TIMEOUT);
assertEquals("bar", reply.getPayload());
}
相反,日志显示错误。这是一个相关的片段:
...
Message : Failed to find entry point for component, the following resolvers tried but failed: [
ExplicitMethodEntryPointResolver: Could not find entry point on: "foo.Foo" with arguments: "{class java.lang.Integer}"
]
...
Exception stack is:
1. Failed to find entry point for component, the following resolvers tried but failed: [
ExplicitMethodEntryPointResolver: Could not find entry point on: "foo.Foo" with arguments: "{class java.lang.Integer}"
答案 0 :(得分:3)
Mule的入口点解析器不会执行本身:它们会寻找可能接受特定有效负载的方法。
这就是说,method-entry-point-resolver
需要严格的类型匹配才能工作。在场景的后面,我们在ExplicitMethodEntryPointResolver.java中找到支持它的类,如下所示:
if (ClassUtils.compare(parameterTypes, classTypes, false, true))
false
表示:与Object不匹配。这就是为什么匹配不适合你的原因。不幸的是,这是不可配置的。
当您删除入口点解析器的显式配置时,Mule使用包含reflection-entry-point-resolver
的默认解析器链。这是一个愉快地将Integer传递给Object参数的那个,因为在ReflectionEntryPointResolver.java中:
methods = ClassUtils.getSatisfiableMethods(component.getClass(),
ClassUtils.getClassTypes(payload), true, true, ignoredMethods);
第二个真实的意思是:匹配对象!
因此,如果您要在配置中指定单个入口点解析器,reflection-entry-point-resolver
是您的朋友:)