Java Web Weekly, Issue 128

This week, some cool writeups all about reactive programming coming to Spring as well as insights out of a huge dataset of Java exceptions.

Java Web Weekly, Issue 127

A well thought out writeup on deploying to production with Spring and some solid advice on why events make a lot of sense for microservices.

Introduction to JsonPath

1. Overview One of the advantages of XML is the availability of processing — including XPath — which is defined as a W3C standard. For JSON, a similar tool called JSONPath has emerged. This tutorial will give an introduction to Jayway JsonPath, a Java implementation of the JSONPath specification. It describes setup, syntax, common APIs […]

Baeldung Weekly Review 27

A week chock-full of Spring releases. A nuanced discussion on the trade-offs of microservices. And a piece on office politics. A good week overall.

Guava CharMatcher

Use the Guava CharMatcher to work with Strings – remove special chars, validate, trim, collapse, replace and count among other super useful APIs.

Guava – Sets

Working with Sets in Guava – intersection, union, cartesian product, set of ranges and other useful code samples.