I've just published a small library that allows you to write #JUnit5 parameterized tests in a human-readable way. Just provide a format and use it to define your test cases 👇 github.com/mikemybytes/junit…
JDK 27 reaches general availability on September 14. Two of its JEPs change your memory footprint and GC behavior with zero code change. A third headline feature is entering its twelfth incubation. Telling those two groups apart is the actual senior-dev read.
1/7
#Java#Kubernetes quirk: if you remove CPU limits to avoid throttling, the #JVM may suddenly think it can use all CPUs on the node, which can mean dozens of extra threads (GC, JIT, ForkJoinPool...) 🤯
Luckily, there’s a way to address that 👇 mikemybytes.com/2026/03/12/k…
My 'Awesome lost & found' collection is back!
In this release: Java memory growth that isn’t a leak, how bytecode actually runs, and why growing organizations lose cost visibility 👇
github.com/mikemybytes/aweso…
Put on your comfy shoes, because we're walking through some of the many notable performance improvements and features in JDK 25. 🚶 social.ora.cl/6011A7thd
github.com/apple/containeriz…
This is interesting! Not only for containers, it also allows spawning lightweight virtual machines 👀
And it being OSS adds to the news 🔥
We are working on a new big project for @GraalVM — Project Crema: github.com/oracle/graal/issu….
It will lift Native Image's default closed-world assumption by allowing dynamic loading and execution of classes at run time.
Stay tuned for updates!
How ZGC efficiently allocates memory and balances physical memory mapping to minimize overall runtime memory usage. While assessing memory usage, you may want to look at how good the GC is at reclaiming unused memory to the OS.
joelsiks.com/posts/zgc-heap-…#Java#GC#ZGC#OpenJDK
Happy 10th birthday (counted from the first public commit on GitHub) to @testcontainers 🥳🍰
Thank you for changing our lives in many, sometimes unexpected ways ☺️
📢 New post: #Java 24 - Thread pinning revisited
I don't remember being so excited about some of my past articles becoming obsolete! mikemybytes.com/2025/04/09/j…
Blogged: Restrict Mutability of State
"Much code that we consider complex is considered complex because of the mental highwire act we perform when trying to understand what (the hell) is going on. Thinking about code should not be a circus performance."
kevlinhenney.medium.com/rest…
Making a bigger impact without working more? Last year, I discovered that it's not only possible but also effective. It was a year of scaling myself. mikemybytes.com/2025/02/05/a…
We're coming towards the end of #AWSreinvent 2024 and we've seen an impressive set of releases, so here is my top 10 announcements I find most impactful for this years #AWS re:Invent.
#Java Time Tip: Watch out for equals() vs isEqual() in date-time classes! ZonedDateTime, OffsetDateTime, and OffsetTime behave different:
equals(): Compares all fields (including zone/offset) isEqual(): Compares instants (ignoring zone/offset)
Same moment, different result