Java
-
Prefixed Naming
If you look at the source code of Takes or Cactoos for the first time, you most probably, like many…
Read More » -
Java/Spring: How to Generate an Entire Swagger Documented CRUD REST API With Speedment
As developers, one of the most cumbersome tasks we often face in our day-to-day lives is writing good and understandable…
Read More » -
Call That An Exception?
While this is a Java example to do with testing and wiremock, it relates to a more universal problem. We…
Read More » -
CUBA: Getting Ready for Production
“It works on my local machine!” Nowadays it sounds like a meme, but the problem “development environment vs production environment”…
Read More » -
Mythematical Codey Code
Consider the following snippet: int max = 10; int a = 0; while (true) { // do a thing that…
Read More » -
ZeptoN is Putting Program into Java
1. Introduction The Java programming language or “Java” was introduced in 1995. Yet in the almost quarter-century it has added…
Read More » -
Explode a WAR File Recursively
Abstract Ever need to explode a WAR file as well as exploding all JAR files in the WAR file? Ya,…
Read More » -
It Broke vs You’re Wrong
When building REST APIs for microservices, there are a few design decisions to make about responses. Some responses are clearly…
Read More » -
Proving There’s No Exception
How do you prove the existence of nothingness? Should you? In some tests I’ve written, especially around either validation, or…
Read More »