How to check if string contains substring in java
In Java application development, working with strings is a fundamental task, as strings are used in almost every program. One of the common challenges when manipulating strings is checking if…
Remove an Element from ArrayList in Java
The java.util.ArrayList class is part of the Collections Framework and is a data structure that allows you to store elements in a format similar to an array, but dynamically. Unlike…
Java main() Method
The Java main() method serves as an entry point for an application. It is a block of code that is executed when the program is started. The main() method is…
Write your first Java program
In the world of programming, a “Hello World!” program serves as an introduction for people who are unfamiliar with a particular programming language, providing a simple example to demonstrate the…
Introduction to Java
Known for its concurrent and object-oriented nature, Java embodies the concept of “write once, run everywhere.” Originally developed by Sun Microsystems and later acquired by Oracle, Java has evolved into…
Create Swagger Documentation for REST API
Nowadays, with the proliferation of REST APIs, automating the process of documenting them has become important to: What is Swagger? Swagger is an open source framework used to design, document…
Create a microservice using Spring Boot
In this article we will cover the steps required to create a microservice using Spring Boot, deploy it to the Apache Tomcat server and access the endpoints using a REST…