DO NOT BE AFRAID OF USING VAR, use it wisely, use it to reduce verbosity, make code readable and enforce other best practices in naming. Instead of prohibiting its use, let’s use correctly.
Continue readingTag: java 11
Java – Local variable Type Inference
Let’s review some considerations when using the Local variable type inference Java. It basically allows the developer to use the word var instead of the type when declaring local variables (into methods), the compiler is able to infer the type from the right side of the assignment.
Continue readingPKCS 11 Provider across multiple Java versions
A cross version approach to create SunPKCS11 providers to interact with smart cards. Supports version Java 5 to Java 18 at this moment.
Continue readingJava 17 features – new since Java 11
Let’s know about the main new features introduces in Java 17 if you are using Java 11 at this moment.
Continue readingRest Client with Java 11+
A summary about how to create rest http client in Java. Focusing on the alternative previous Java 11 and then the new http client included in Java 11.
Continue reading