How to Manage Your JDKs With SDKMAN https://mydeveloperplanet.com/2022/04/05/how-to-manage-your-jdks-with-sdkman/
#Java #sdkman

How to Manage Your JDKs With SDKMAN https://mydeveloperplanet.com/2022/04/05/how-to-manage-your-jdks-with-sdkman/
#Java #sdkman
Reading about the relatively new #Java records entity and screaming "Why would you do this?" into the void
How We Got the Generics We Have: (Or, how I learned to stop worrying and love erasure)
https://openjdk.org/projects/valhalla/design-notes/in-defense-of-erasure
Discussions: https://discu.eu/q/https://openjdk.org/projects/valhalla/design-notes/in-defense-of-erasure
Logging Reloaded: Quarkus Edition
https://myfear.substack.com/p/logging-reloaded-quarkus-edition
#Java #Quarkus #Logging #BestPractices
Modern Thymeleaf Bundle https://leanpub.com/b/modern-thymeleaf-bundle by Wim Deblauwe is the featured bundle of ebooks on the Leanpub homepage! https://leanpub.com wimdeblauwe@mastodon.social #Java #Html #WebDevelopment #Software #Javascript #books #ebooks
Using #JetBrains Junie to convert a #Spring Boot app to #Quarkus
https://youtube.com/watch?v=sQgAZRq4_40&si=MgPonUTwhkqWTOpm by Eric Deandrea
#Java
Stream Gatherers - Deep Dive with the Expert #JavaOne
Discussions: https://discu.eu/q/https://youtu.be/v_5SKpfkI2U
How We Got the Generics We Have: (Or, how I learned to stop worrying and love erasure) https://lobste.rs/s/sirtt6 #java #plt
https://openjdk.org/projects/valhalla/design-notes/in-defense-of-erasure
Ditto Java Server SDK built on Kotlin Multiplatform
https://www.ditto.com/blog/announcing-java-server-sdk-public-preview
Discussions: https://discu.eu/q/https://www.ditto.com/blog/announcing-java-server-sdk-public-preview
Simon Ritter has chosen six new features in OpenJDK 24 that are particularly relevant and interesting for developers and those deploying #Java.
"Six JDK 24 Features You Should Know About" by @speakjava
https://foojay.io/today/six-jdk-24-features-you-should-know-about/
The Daemonless Developer:
Mastering Podman for Secure, Efficient, and Kubernetes-Ready Applications
https://myfear.substack.com/p/the-daemonless-developer
#Podman #Java #Kubernetes
Check out what’s new in the world of #Java https://bit.ly/4iWak8D
Updates for Jakarta EE 11 and Spring AI; the first beta release of WildFly 36.0; the third alpha release of Hibernate Search 8.0; the March 2023 release of Open Liberty; and point releases for Quarkus, Infinispan, JHipster and OpenXava.
https://learn.microsoft.com/en-us/azure/migrate/appcat/ - #Azure Migrate (or AppCat) checks a #dotNET or #Java app for code patterns that don't work in the cloud like local file system use.
Datadog is hiring Senior Software Engineer - OpenTelemetry Agent
#c #cplusplus #golang #java #rust #dotnet #seniorengineer
Paris, France
Full-time
Datadog
Job details https://jobsfordevelopers.com/jobs/senior-software-engineer-opentelemetry-agent-at-datadoghq-com-feb-3-2025-68fa80?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
Deploying Azure Resources using MCP and Quarkus https://www.linkedin.com/pulse/deploying-azure-resources-using-mcp-quarkus-antonio-goncalves-jjaqe/
#Java #Quarkus #MCP #Azure
Whoa. Methods in #Java may undergo an efficient change.
https://openjdk.org/jeps/8209434
From:
```java
int length(String s) {
return s.length();
}
```
To:
```java
int length(String s) -> s.length();
```
Or with a method reference:
```java
int length(String s) = String::length;
```
Optimized a Java function & cut production CPU from >90% to 70%
https://longmha.blogspot.com/2025/03/when-onm-isnt-fast-enough-java.html
Discussions: https://discu.eu/q/https://longmha.blogspot.com/2025/03/when-onm-isnt-fast-enough-java.html