Apache Camel 4.10 What's New
, by Claus Ibsen, Otavio Rodolfo Piske, Tadayoshi Sato, Federico MarianiApache Camel 4.10 LTS has just been released. This release introduces a set of new features and noticeable improvements that we will cover in this blog post. Camel Core Added customize to RouteBuilder to make it easier to configure a specific Camel component / dataformat, service in a Java lambda style, such as follows: @Override public void configure() throws Exception { customize(KServeComponent.class, k -> { k.getConfiguration().setTarget("localhost:8888"); }); from("timer:kserve?repeatCount=1") .to("kserve:model/metadata?modelName=myModel") .log("${body}"); } This makes it possible for low-code users that want to have a single Java file with the Camel route and all the Java based configuration done entirely from the same configure method.