Same Testcontainers. Same tests. Completely new experience. Anywhere!
White Paper: Why Jakarta EE Is the Right Choice for Today’s Java Applications
Jakarta EE is much more than the next iteration of Java EE. It is the doorway to strategic and technical benefits that are only possible through the Jakarta EE community.
High-Performance Java Persistence – eBook
PDF, EPUB, and MOBI (Kindle) book versions
Devnexus 2023
April 4th – 6th, 2023
Amazing CTO
Developer productivity has many factors. We compare compiler messages in Go, Rust, Python, Typescript, Scala, and Java
Java ExecutorService
The Java ExecutorService is a built-in thread pool in Java which can be used to execute tasks concurrently. Tasks are submitted to the Java ExecutorService as objects implementing either the Runnable or Callable interface. The ExecutorService then executes it using internal worker threads when worker threads become idle.
What to Know About Garbage Collection as a Java Developer!
Check out this overview of the functionality of the Garbage Collector and the things a developer should know.
Scaling a Spring application with a YugabyteDB cluster
Scaling the data access layer of a Spring application can be done very easily with a YugabyteDB cluster of several nodes.
Eclipse AQAvit Provides Comprehensive Quality Assurance for Java
Eclipse AQAvit project lead Shelley Lambert explains how AQAvit answers key questions that enterprises have about software quality, and how participation in the project can have numerous benefits for your enterprise.
Java’s New Threat Model – DZone
The next positive change in Java security is to strengthen the supply chain of software components, know what’s running and what’s vulnerable, and communicate this information with non-technical experts whose data is at risk.
Java Stream parallel forEachOrdered – Java Challengers
Learn important principles of stream, parallel and forEachOrdered to improve your Java skills! Go deeper into Java Streams concepts by figuring out this Java challenge! Try to solve it before seeing the answer. Remember, you will acquire a new skill much faster when you struggle to learn.https://www.youtube.com/watch?v=gamlYJU2abY
Eclipse Adoptium: 2022 in Review and 2023 Roadmap
Eclipse Adoptium community manager Carmen Delgado reviews last year’s milestones, and explains why 2023 could be an even bigger year for Adoptium.
How do I efficiently iterate over each entry in a Java Map?
If I have an object implementing the Map interface in Java and I wish to iterate over every pair contained within it, what is the most efficient way of going through the map?Will the ordering of