Thoughts of a developer
Before you can publish your plugin code to mavenLocal(), you have to add add the ‘maven-publish’ to your plugin build.gradle. plugins { id 'java-gradle-plugin' id...
Eclipse MicroProfile (MicroProfile 3.0 update) Eclipse MicroProfile is an open-source community specification for Cloud Native Java microservices. The last 3 years there have been several...
Eclipse MicroProfile Eclipse MicroProfile is an open-source community specification for Cloud Native Java microservices. The last 3 years there have been several MicroProfile releases. To...
Amazon Cognito is a robust solution for user- and identity-pool management. For java users Amazon provides a more or less simple SDK. In this short...
Factory patterns are often used in software projects to encapsulate the object creation from the client. In my previous developer career, I have seen many...
If you want to determine the Java version of a class file, you have to check the major version number. A good and detailed explanation...
When I think of CDI (Contexts and Dependency Injection), I always have Java EE in mind. But you don’t need a JEE application server to...