from("e1")
.split()
.method("bean", "m1")
.to("e2")
.end()
.split()
.method("bean", "m2")
.to("e3");
编译器抱怨 2nd to
。原因是由于某种原因,它认为第二个split
返回ExpressionCaluse
而不是ExpressionClause<SplitDefinition>
,这导致下面的method
返回类型是Object
而不是SplitDefinition
。