[Solved] What would be the best language in which to write an ESB?


It’s pretty rare that there’s a best language for writing any kind of application in the absence of external constraints. The popularity of Java for ESBs seems to be based on the fact that they’re coordinating a bunch of other software that’s also written in Java. While any language would work, they’re often producing and consuming content for and from Java libraries and therefore benefit from using the same libraries in adapters that their clients and servers use.

A language that is not Java but runs on the JVM and interoperates well with Java would have most of Java’s advantages for such software. Scala and Clojure come to mind as good options. Erlang does seem like an appropriate choice as well, though it may be tougher to sell to customers.

2

solved What would be the best language in which to write an ESB?