An opinion piece predicting what’s in store for the Java ecosystem in 2019, and a good review of expression-based access control.
Category: Articles
Teaching Java with Jupyter notebooks
Whatever the side of the fence you’ve been on in trainings – teacher or student, I believe we all share the same experience: it’s very hard to stay focused during a couple of hours. This has only become worse in recent years, with mobile phones being a huge source of distraction. The consequence is that the most important part is the practice.
Java in 2019: A Look Ahead — ADTmag
In the time-honored tradition of tech journalists everywhere, John reaches out to industry experts to see what’s in store for his favorite programming language in the new year.
Compact Number Formatting Comes to JDK 12
JDK 12 Early Access Build 24 introduces support for Compact Number Formatting . The JDK-8188147 (Compact Number Formatting support) CSR ‘s …
The Payara Platform’s Journey to Jakarta EE 8 Compatibility – DZone Java
This post looks at efforts by the Payara Platform to make Java EE open source with global Jakarta EE 8 compatibility, as well as support for TCK and GlassFish.
Authorization for a Multi-Cloud System
This is a project design I am currently working on to consume SPIFFE(Secure Production Identity Fra…
Expression-Based Access Control
1. OverviewToday, we’ll be reviewing the differences between Expression-Based Access Control (EBAC)…
API Design of Eclipse Collections – JVM Advent 2018
Eclipse Collections is an open source Java Collections Framework which enables writing functional, fluent code in Java. History Eclipse Collections started off as a collections framework named Caramel at Goldman Sachs in 2004. Since then the framework has evolved, and in 2012, it was open sourced to GitHub as a project called GS Collections. Over …
Verbose Garbage Collection in Java | Baeldung
Learn how to enable verbose GC in Java and how to interpret the resulting logs.
Java Interfaces
Java interfaces specify what methods a class implementing that interface should have, but the interface does not specify the exact implementation of the methods. This Java interface tutorial explains how Java interfaces work, and how to use them.
Using Module Dependencies, Part 1 – Developer.com
Learn about module dependencies in Java. There is an example in which one module has a dependency on another.
Java @SafeVarargs Annotation | Baeldung
Learn about the @SafeVarargs annotation in Java
Introduction to Akka HTTP | Baeldung
Learn how to create an HTTP server with Akka
Java @SuppressWarnings Annotation | Baeldung
Learn how to use the @SuppressWarnings annotation