BKBirgit Kratzinblog.birgitkratz.de·Nov 20, 2025 · 7 min readStable Values und Immutability in Java: Eine KlarstellungIm Oktober 2025 hatte ich die Gelegenheit, bei der betterCode Java 2025 einen Vortrag zum Thema "Stable Values - JVM-optimierte Immutability" zu halten. Der Vortrag drehte sich um JEP 502 "Stable Values" und wie dieses Feature die Art und Weise verän...00
BKBirgit Kratzinblog.birgitkratz.de·Jan 25, 2023 · 4 min readReading from a file within a JARTL;DR: When reading resources from a file in Java it is better to use an `InputStream` rather than a `File`. Using `InputStream` allows you to read content regardless of where the resource file is located. Recently in one of the projects I'm working...00