Java
-
Apache Derby Database Users and Permissions
Abstract Apache Derby is awesome! Especially in a Microservices environment where the data for services (may) shrink and not require…
Read More » -
Making Pivot Tables with Java Streams from Databases
Raw data from database rows and tables does not provide so much insight to human readers. Instead, humans are much…
Read More » -
New JDK 11 Files Method isSameContent()
It has been proposed that a method named isSameContents() be added to the Files class in JDK 11 via JDK-8202285…
Read More » -
TestContainers and Spring Boot
TestContainers is just awesome! It provides a very convenient way to start up and CLEANLY tear down docker containers in…
Read More » -
New JDK 11 Files Methods for Reading/Writing Strings From/To Files
My previous post focused on the Files.isSameContent() method that is likely to be added to JDK 11. JDK-8201276 [“(fs) Add…
Read More » -
Using Java Stream summary statistics
Streams of primitive types (IntStream, etc.) provide a summaryStatistics() method that can be used to get multiple statistical properties of…
Read More » -
Secure a Spring Microservices Architecture with Spring Security and OAuth 2.0
“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building the same login screens over…
Read More » -
Java 8 filter & map & collect & Stream Example
Hello guys, many of my readers emailed me to write a post about map and filter function of Java 8 because…
Read More » -
Predicate::not Coming to Java
Jim Laskey’s recent message “RFR: CSR – JDK-8203428 Predicate::not” on the OpenJDK core-libs-dev mailing list calls out JDK Bug JDK-8203428…
Read More »