I recently read this article over at DZone about using Java 8 Streams and Collectors to manipulate and perform calculations on a list of integers. I don't intend to start an argument over which language is better, but my immediate thought was that it would make a good blog post to show how one might perform these tasks in Groovy. Collections in Groovy have long been a shining example of how Groovy enhances Java with convenience methods for common tasks. Here's a recreation of all the examples in the DZone post to show you how easy Groovy makes them:Determining the sum and average is quite simple:
Though, average isn't a built in method. So, let's add it using metaprogramming instead:
What about min/max?summarizingInt() example, but we can do either:
I've written many blog posts about connecting to an Autonomous DB instance in the past. Best practices evolve as tools, services, and frameworks become...
Email delivery is a critical function of most web applications in the world today. I've managed an email server in the past - and trust me - it's not fun...
In my last post, we looked at the technical aspects of my Brain to the Cloud project including much of the code that was used to collect and analyze the...