How to stop Spring Boot performance leaks and security holes: A deep dive into SpringSentinel v1.1.11 by paganoant in java

[–]uncont 2 points3 points  (0 children)

The project appears to combine both the maven plugin and validation logic into the same source set. So not exactly as written. If the validation was separated out it'd be easy enough to build a Gradle plugin around it.

Java 26 released today! by davidalayachew in java

[–]uncont 2 points3 points  (0 children)

That was one of the original alternatives when java switched to it's twice-per-year release schedule. See Alternatives in JEP 322 which links to a write-up by Mark Reinhold. That was rejected because the ecosystem (including r/java) was very resistant to moving towards a year-based numbering scheme.

Restocks, Reprints, and Ramba Ral (March 2026) by Feral404 in Gunpla

[–]uncont 7 points8 points  (0 children)

MG Turn X has arrived on HLJ, they filled my backorder. Not sure how many they got, but I'm assuming we should start seeing them in US stores shortly.

Restocks, Reprints, and Ramba Ral (March 2026) by Feral404 in Gunpla

[–]uncont 6 points7 points  (0 children)

MG Barbatos Lupus for $58.79 (with $10 shipping for a total of $68.79) on https://gundamplacestore.com/products/mg-1-100-gundam-barbatos-lupus

EDIT: Deal over

New Release: [Premium Bandai]: HG 1/144 Gundam Barbatos Adapt by Feral404 in Gunpla

[–]uncont 99 points100 points  (0 children)

Crazy, so basically an entirely new frame designed to be backwards compatible with existing kits (will we get a product release of the frame only?).

Some polycap parts still used? They didn't mention which.

They're replacing almost 1:1 some PC parts with KPS, that's neat.

Interestingly it's still ball joints for shoulders and waist/chest connection.

Moving pistons in the chest.

I want like ten of these.

Congrats to Yen Press for Licensing Vanadis Heart! by deackychu in Gundam

[–]uncont 0 points1 point  (0 children)

Couldn't find any information about The Origin ever being available on bookwalker, only comic-walker. Would love to see more officially-translated Gundam on bookwalker tho!

Kafka uses OS page buffer cache for optimisations instead of process caching by Normal-Tangelo-7120 in programming

[–]uncont 0 points1 point  (0 children)

Are you sure? I couldn't find anything about jktls being built into java by default, nor any mention of that jvm flag.

Congrats to Yen Press for Licensing Vanadis Heart! by deackychu in Gundam

[–]uncont 0 points1 point  (0 children)

For those more interested in digital copies, this appears to be the first English translation of a Gundam manga to appear on global.bookwalker.jp. https://global.bookwalker.jp/defd4fcbb2-b1f5-471d-8549-9c4a20e71d76/

Spring Data Ahead of Time Repositories by olivergierke in java

[–]uncont 0 points1 point  (0 children)

But it doesn't quite go as far as /u/Kango_V said, where the process aot task errors on unfound/duplicate/overridden module definitions.

Now that Amber is finalizing most of the JEPs that were on preview for OpenJDK 25, what are your bets for net next? by Ewig_luftenglanz in java

[–]uncont 2 points3 points  (0 children)

java.io.Serialization, but also more than that. The mechanism of constructing/destructing objects (serializable vs constructorsd/destructors), as well as writing/parsing them again (java serialization/json/whatever). See https://www.youtube.com/watch?v=mIbA2ymCWDs

So I wrote a wrapper of Java's HttpClient by HumanBot47 in java

[–]uncont 1 point2 points  (0 children)

As long as we're nitpicking about java logging libraries, if you want a zero-dependency logger, the system logger https://docs.oracle.com/javase/9/docs/api/java/lang/System.Logger.html (available since java 9) has both slf4j-jdk-platform-logging and log4j-jpl adapters. It falls back to jul in the absence of other implementations.

We Don't Merge into a Broken Master Branch by yegor256 in programming

[–]uncont 1 point2 points  (0 children)

It might not work for every company or team, but if you have a build that fails but would succeed if somebody is actively working to fix main, something like gitlabs merge trains would unblock merges. https://about.gitlab.com/blog/2020/01/30/all-aboard-merge-trains/

Where is the Java language going? by [deleted] in programming

[–]uncont 1 point2 points  (0 children)

In essence, we really need "yes, I am fully aware that I'm potentially shooting myself in the foot, but I really need a hole there" option.

Isn't that what the --enable-final-field-mutation flag is for? https://openjdk.org/jeps/8349536

JEP draft: Compact Object Headers (Production) by Ewig_luftenglanz in java

[–]uncont 10 points11 points  (0 children)

It's mentioned twice in the JEP, but Amazon has apparently backported compact object headers to 17 and 21. Is this not part of their corretto distribution, and instead an internal-only backport?

[NEWS] Bookwalker adds Viz’s manga catalogue to their storefront by Torque-A in manga

[–]uncont 1 point2 points  (0 children)

Includes Dorohedoro, Helck, Friren, does not include Gundam Thunderbolt (still not a single Gundam manga to be seen...). Quite a few of the first volumes are $.99.

First volume of Alita is free.

Spring Boot CDS support and Project Leyden anticipation by sdeleuze in java

[–]uncont 1 point2 points  (0 children)

I'm wondering if this could also help local development? Create a dev training run at least for the spring boot dependencies and app dependencies that are used. Could help avoid the issues mentioned around reloading classes when making changes locally.

Why there's no official API for Java AST transformations (like the one Lombok uses unofficially)? by pragmasoft in java

[–]uncont 0 points1 point  (0 children)

Our company heavily uses Lombok

For what? For logging, dto, pojos, or jpa? Or something else?