Main points: Anypoint Studio is already equipped for Java developmentTo facilitate Java development you can add Maven supportMaven support is added via the M2Eclipse [...]
Main points: DataWeave 2.0 provides mapping capabilitiesJava and DataWeave can achieve the same mappingsDataWeave mapping function is less verbose than Java DataWeave map [...]
There are occasion when it is more convenient to create an array inline. Here are several way to declare and initialise primitive arrays and java.util.Lists type arrays. [...]
A User-Friendly Introduction The Java Documentation of String formatting is not the easiest to read and understand if you are not familiar with String formatting or just want [...]
The Difference Between Two Methods? The Java Enum has two methods that retrieve that value of an enum constant, name() and .toString(). The toString() method calls the [...]
It’s always nice to have your commitment to Java confirmed and this month it was TIOBE who showed that Java is still the number one most used programming languages, [...]
Recently I was writing some units tests, as all good developers should, and ran into an issue with a test that made use of the IntStream of(int t) method. The test execution [...]
What do Pizzas and the Richardson Maturity Model have in common? Find out in my latest blog post where I explain the model’s four levels with the help of some tasty [...]
Recently there was an interesting discussion on the use of predicate negation in the .filter method on a stream by members of the LJC mailing list, so I thought it would be [...]
Discover an alternative way to implement the classic GOF strategy pattern using the humble enum. With code examples, you will see two interesting ways to implement strategy [...]