Java
-
Five Features to Make Java Even Better
I stumbled upon this proposal by Brian Goetz for data classes in Java, and immediately realized that I too have…
Read More » -
WildFly Kubernetes exec probes
Liveness and readiness probes tell Kubernetes whether a pod is running and ready to do some work. An enterprise application…
Read More » -
Jersey client dependencies for JAX-RS 2.1
Jersey is the reference implementation of JAX-RS 2.1. The following Jersey dependencies are required in order to run a JAX-RS…
Read More » -
Functional Java by Example | Part 1 – From Imperative to Declarative
Functional Programming (FP) is about avoiding reassigning variables, avoiding mutable data structures, avoiding state and favoring functions all-the-way. What can…
Read More » -
Java Command-Line Interfaces (Part 30): Observations
This series on parsing command line arguments in Java has consisted of 29 posts published over four months and covering…
Read More » -
Java – HashMap in-detail explanation
HashMap works based on hashing algorithm, As per Java doc HashMap has below four constructors, Constructor Description HashMap() Constructs an…
Read More » -
Secure Your Java App with Spring Security, Thymeleaf, and Okta
Never Build Auth Again – Love building user management? With Okta, you can add social login, multi-factor authentication, and OpenID…
Read More » -
Implementing Dynamic Dialog Handler with Functional programming
In my previous post I mentioned a common use case when we need to programmatically check if the current transaction is dirty…
Read More » -
Java 9 Streams API using JShell
This post looks at the Java 9 Streams API using JShell. The Streams API changes build on the success of…
Read More »