A blog about Java, Spring, Hibernate, Programming, Algorithms, Data Structure, SQL, Linux, Database, JavaScript, and my personal experience.
Category: dummyCategory
How to safely consume Java Streams be safely without isFinite() and isOrdered() methods?
There is the question on whether java methods should return Collections or Streams, in which Brian Goetz answers that even for finite sequences, Streams should usually be preferred.But it seems t…
How to lazily fetch groups in JOOQ?
I’m trying to write a query in which I fetch child records for my aggregate root using leftJoin like this:dslContext.select() .from(PARENT) .leftJoin(CHILD) .on(CHILD.PARENT_ID.eq(PAR…
Java 13 Enters Feature Freeze and Rampdown
The final feature list for Java 13 (due in September) has been confirmed, as the project enters testing and rampdown. No major new features are part of this release.
Clone and create a private GitHub repository with these steps
Now that developers can create a private GitHub repository in its free tier, you may run into issues with the ‘fatal: repository not found’ error message. Here’s how to fix that problem and successfully clone your repository.
JDK 13: VM.events Added to jcmd
CSR ( Compatibility and Specification Review ) JDK-8224601 [“Provide VM.events diagnostic command”] is implemented in JDK 13 as of JDK 13 …
oracle/helidon
Java libraries for writing microservices. Contribute to oracle/helidon development by creating an account on GitHub.
Announcing GitHub Sponsors: a new way to contribute to open source
We’re thrilled to announce the beta of GitHub Sponsors, a new way to financially support the developers who build the open source software you use every day. Open source developers build tools for the rest of us. GitHub Sponsors is a new tool to help them succeed, too.
Java 8 nested lambdas break compiler
i have a complex problem with Java 8.ProblemWith nested lambda compiler crash with a NullPointerException!I know that lambdas must be stateless indeed in this case the codes that have state are
Optimistic locking version property with JPA and Hibernate – Vlad Mihalcea
Learn how optimistic locking version property works when using JPA and Hibernate, and how it can help you prevent the lost update anomaly.
Top 5 Java 8 and 9 Courses for Programmers (FREE) – Best of Lot
A blog about Java, Programming, Algorithms, Data Structure, SQL, Linux, Database, Interview questions, and my personal experience.