Java & Kotlin

JVM releases, Spring ecosystem, build tooling, and performance.

  • 8 Tracked terms
  • Last 30 days Feed window

What this topic collects on

An article joins this feed when it matches these terms. Each one is also a search of its own.

Latest in Java & Kotlin


medium.com > @Xiro0x01 > your-full-guide-to-learn-http-request-smuggling-c237d1df8b25

Your Full Guide To Learn HTTP Request Smuggling

35+ min ago   (434+ words) From CL.TE to 0.CL — a progression through every major desync technique ( Over 25 Techniques To Approche The Vuln ) Why This Writeup Exists Most …...


dev.to > aifrontierpost > structured-outputs-getting-json-you-can-trust-from-llms-54m0

Structured outputs: getting JSON you can trust from LLMs

6+ hour, 56+ min ago   (449+ words) Originally published at AI Frontier Post. Malformed JSON from LLMs doesn't have to be a fact of life. Here's the full reliability stack — strict schemas, provider enforcement, constrained decoding, and validation-and-repair loops — that ends the bug for good. This is…...


dev.to > purbano > the-row-says-system-spring-data-jpa-auditing-outside-the-http-request-f77

The Row Says 'system': Spring Data JPA Auditing Outside the HTTP Request

9+ hour, 13+ min ago   (1466+ words) Every table in our platform has the same four columns at the end: created_by, created_at, updated_by, updated_at. Spring Data JPA fills them in for you with four annotations and one @EnableJpaAuditing. That part takes five minutes. Everything is in a companion repository: auditor-aware-demo. It…...


dev.to > kishanag028 > why-one-thread-is-enough-building-a-sequential-tcp-server-in-rust-5bo7

Why One Thread Is Enough: Building a Sequential TCP Server in Rust

9+ hour, 38+ min ago   (650+ words) Look, I know "single-threaded server" sounds like you forgot to finish building it. We live in a... Tagged with programming, software, rust, backend....


dev.to > codenameone > javadoc-that-feels-like-your-website-4a6l

Javadoc That Feels Like Your Website

10+ hour, 10+ min ago   (357+ words) A Java 25 doclet turns the Codename One API model and Markdown comments into Hugo content. The site gains integrated search and theming while preserving member links and the offline Javadoc archive. Tagged with java, mobile, android, ios....


dev.to > majid_khazaei_dev > the-second-race-condition-when-updating-a-record-is-just-as-dangerous-as-creating-one-4bco

The Second Race Condition: When Updating a Record Is Just as Dangerous as Creating One

12+ hour, 25+ min ago   (1301+ words) A Django concurrency story about read-then-mutate, silent no-ops, and why one fix is never enough. After I fixed the add_member race condition, I did what most developers do after a win: I closed the ticket and moved on. Then a small…...


dev.to > vmodal_ai > nvidia-tensorrt-edge-model-optimization-3gpl

NVIDIA TensorRT Edge Model Optimization

12+ hour, 50+ min ago   (231+ words) Modern Physical AI systems are distributed pipelines. The goal is not simply higher FPS; it is predictable latency, controlled memory use, reasonable power consumption, and reliable behavior. Before changing code, record: Keep the test scenario identical between benchmark runs. Measure…...


tech-insider.org

LangChain vs LlamaIndex vs CrewAI 2026: Full Comparison

13+ hour ago   (866+ words) Before comparing benchmarks and pricing, it helps to be precise about what each framework was built for, because the three are not perfect substitutes. All three projects ship updates aggressively, which is itself a signal of how competitive this space…...


dev.to > deyems_adesola > interfaces-in-java-explained-4fmm

Interfaces in Java, Explained

13+ hour, 26+ min ago   (314+ words) An interface in Java is a blueprint of behavior — a contract that any implementing class agrees to fulfill. Interfaces are often used as an alternative (or complement) to abstract classes, especially since Java doesn't support multiple inheritance with classes but…...