Java 191

Java is the core topic across this site. These posts cover modern Java features, OpenJDK evolutions, performance tuning, tooling, and hands-on development lessons from real projects.

Java
Oct 21, 2024 · 1 min

Foojay Podcast #59: DevRel Explained and How to Become a Conference Speaker

Wondering what a Developer Relations job actually involves, or how to get on stage at a conference for the first time? We brought together a panel who lives this every week to …

#podcast#foojay#conference#java
Java
Sep 30, 2024 · 1 min

Foojay Podcast #58: How Java Developers Can Secure Their Code

Three years after Log4Shell shook the Java world, the same class of problems keeps showing up in production code. Outdated dependencies, SQL injection, deserialization bugs, and …

#podcast#foojay#java#security
Sep 25, 2024 · 3 min

Deep dive into bits, bytes, shorts, ints, longs, signed, and unsigned with Java

On the Pi4J discussion list, someone recently asked what the best and easiest way is in Java to convert a byte value . In Java, there is no distinction between signed and unsigned …

#java#tutorial
Java
Sep 16, 2024 · 1 min

Foojay Podcast #57: Welcome to OpenJDK (Java) 23

Every six months, a new Java release lands, and the question is always the same. What actually changes for the code we write today, and what is worth waiting for? OpenJDK 23 brings …

#podcast#foojay#java#openjdk
Sep 4, 2024 · 3 min

How we almost missed a plane in Kazakhstan, but OpenJDK could have saved us...

In August, our family vacation brought us to Kazakhstan. An important trip, as it is the birth country of our (now) 14y son. It was over 13 years that we had been there and we …

#java
Sep 1, 2024 · 6 min

First experiments with Raspberry Pi Compute Module 4

I’m one of those people with boxes full of devices, waiting to be used in experiments… And from time to time, I dive into those boxes to fill in the gaps in between …

#java#pi4j#javaonraspberrypi#raspberry-pi
Jul 8, 2024 · 2 min

Foojay Podcast #56: Vectors in Java Code, Databases, and LLMs

Vectors sit at the heart of modern AI, yet most Java developers rarely touch them directly. This episode digs into what a vector really is, how databases store them, and why large …

#podcast#foojay#java#ai
Jul 1, 2024 · 2 min

Foojay Podcast #55: Embedded Java, Part 2

Java started its life on small devices like set-top boxes, and it keeps finding its way back to the edge. Modern processors run the same Java runtime on a tiny board and on a cloud …

#podcast#foojay#java#raspberry-pi
Jun 24, 2024 · 1 min

Foojay Podcast #54: Music and MIDI with Java and Kotlin

MIDI turns 40 and still glues every studio together, yet most Java developers never touch the javax.sound package that ships in the JDK. This conversation digs into what that …

#podcast#foojay#java#kotlin
Jun 24, 2024 · 3 min

Links of the BeJUG Presentation: Lessons Learned from #JavaOnRaspberryPi

These are all the links of my presentation at BeJUG in Waregem, Monday, July 24, 2024 .

#javaonraspberrypi#java#pi4j#azul
Jun 17, 2024 · 1 min

Foojay Podcast #53: JCON Report, Part 5 – CQRS, JOOQ, GraphQL, API, Vaadin, OpenRewrite, ErrorProne, Gateways, Proxies

Evolving an API without breaking clients stays one of the hardest jobs in backend work. This fifth and final JCON recap walks through how speakers tackle that problem and many …

#podcast#foojay#java#conference
Jun 10, 2024 · 1 min

Foojay Podcast #52: JCON Report, Part 4 – Garbage Collectors, Intelligence Cloud, Test Containers and Flaky Tests, ToxiProxy, Structured Concurrency, Virtual Threads

Garbage collectors, virtual threads, and flaky tests sit at the heart of many Java teams’ daily headaches. At JCON we caught up with speakers who had fresh, hands-on takes on …

#podcast#foojay#java#jvm
Jun 3, 2024 · 1 min

Foojay Podcast #51: JCON Report, Part 3 – Persistence, Evolving your Career, Jakarta EE, GlassFish, Messaging via Telegram

A persistence layer choice can quietly steer a career for years. The speakers at JCON show how open source, Jakarta EE, and a few weekend experiments turn that choice into real …

#podcast#foojay#java#jakarta-ee
May 27, 2024 · 1 min

Foojay Podcast #50: JCON Report, Part 2 - Maven, Software Security, Code Quality

A broken build pipeline or a sneaky transitive dependency can derail a Java project for days. The talks at JCON kept coming back to the same question. How do we keep our code …

#podcast#foojay#java#maven
May 21, 2024 · 1 min

Foojay Podcast #49: JCON Report, Part 1 - JUGs, Communities, Open Source, Generative AI, LangChain4j, Machine Learning

Walking the floor at a Java conference is the fastest way to learn what the community actually cares about right now. We packed a microphone and took the Foojay Podcast on the road …

#podcast#foojay#java#jug
May 6, 2024 · 6 min

Book review - Frontend Development with JavaFX and Kotlin

For a personal pet project, I started experimenting with JavaFX and Kotlin to create a user interface with a lot of Java / Kotlin background processing. As I knew there is a book …

#java#book-review#javafx#kotlin
May 6, 2024 · 1 min

Foojay Podcast #48: JUG Oberpfalz, JCON Conference, and JAVAPRO Magazine

A small Java meetup in the Oberpfalz region of Germany sparked something much bigger. The same people behind that local group also run the JCON conference in Cologne and publish …

#podcast#foojay#java#jug
Apr 15, 2024 · 2 min

Foojay Podcast #47: Artificial Intelligence and Machine Learning with Java

ChatGPT changed the way many of us think about software, but the Java ecosystem already has the tools to join in. Frameworks like LangChain4j make it possible to wire large …

#podcast#foojay#java#ai
Apr 2, 2024 · 1 min

Foojay Podcast #46: JUG Switzerland

What does it take to keep a Java User Group alive across a small but multilingual country? Switzerland has an active Java community spread over several cities, and the people …

#podcast#foojay#java#jug
Mar 28, 2024 · 7 min

Example Java Application with Embedded Jetty and a htmx Website

I was experimenting with a Java application that can act as a web server and includes the user interface HTML-files that get modified with htmx, to replace certain parts of the …

#java#htmx#tutorial