Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
from("direct:start")
.choice()
.when(header("foo").startsWith("ba"))
.log("je passe par le when")
.to("direct:when")
.otherwise()
.log("je passe par le otherwise")
.to("direct:other");when(header("foo").startsWith("ba"))
when(header("foo").startsWith("ba"))