排序
Garbage collector in java
Garbage collector in java,Hello friends️ When we write code, Garbage Collector's job is to manage memory And objects we don't use Identifies them And ,free the trash This proces...
Paquetes en Java: qué son, para qué se utilizan, y cómo se usan (con vídeo)
Paquetes en Java: qué son, para qué se utilizan, y cómo se usan (con vídeo), Post original escrito por Franciso Charte en campusMVP Los paquetes son el mecanismo que usa Java p...
Map best practices
Map best practices,Today’s topic is about Map and misuses I’ve seen during many code reviews. The idea with a Map is to do whatever you need by doing as less hashing as possible....
A Token Management Implementation for Web API Authentication in Java
A Token Management Implementation for Web API Authentication in Java,This article studies an implementation of a synchronized process in Java that enables multiple threads to share...
A Better Explaination
A Better Explaination, Hello, again! Since my previous post on Snippet was vague, I decided to make a new one, describing what it is for and what possibilities it could have. A Des...
Microservices code coverage with Jacoco
Microservices code coverage with Jacoco,Frequent deployments is a huge step in Microservices architecture. If you have a suite of tests that run before every deployment and gives a...
Java WebSocket Programming with Android and Spring Boot
Java WebSocket Programming with Android and Spring Boot,The WebSocket protocol provides an always-on connection between a client and a server for bi-directional communication. This...
Reactive Java using the Vert.x toolkit
Reactive Java using the Vert.x toolkit,Vert.x is a toolkit for developing reactive applications on the JVM. Although it's possible to use Vert.x with many different languages (Java...
Optional …. what else?
Optional .... what else?,Optional is in some ways, the Java implementation of the Maybe monad. Don’t get scared by the ‘M’ word. It is simply an encapsulation to handle a specif...
I tried to use Test-Driven Development
I tried to use Test-Driven Development, We will look into how to use test-driven development in order to write code. I go through the process I use in order to create self-document...
Three Ways To Add an ActionListener In Java Swing
Three Ways To Add an ActionListener In Java Swing,When building GUI’s, the interface needs a way to listen and respond to events. Events are triggered when the user interacts with...
Apache Camel #3 – RabbitMq
Apache Camel #3 - RabbitMq,Hello there again! It passed 2 months since my last article, so I decided to write a new one. Today we will focus on RabbitMq and what we can do with it ...