This Week in Java

OpenJDK finished the migration to the GitHub.Azure Spring Cloud is out. It’s a platform for deploying and managing Spring Boot and Spring Cloud-powered services and software built on Microsoft Azure. It is jointly built, operated, and supported by Microso… Read more

Similar

Making FlameGraphs with Containerized Java

About a month ago, I had the pleasure of taking a tutorial led by the fantastic Brendan Gregg on creating FlameGraphs using the Linux perf toolset. I recommend reading his many blog posts on the subject, but in short: while perf is an excellent resource f...

Read more »

A Java Exceptions must read guide

I think the first thing we should discuss is: what is an exception. In a short definition: an exception is a notification of an execution error occurrence.What kind of errors can occur: programming errors and system failure.Wait! How is a programming erro... (more…)

Read more »

Sealed Classes Preview in Java 15

The release of Java SE 15 in Sept 2020 will introduce "sealed classes" (JEP 360) as a preview feature. A sealed class is a class or interface which restricts which other classes or interfaces may extend it. Sealed classes, like enums, capture alternative... (more…)

Read more »