Installing Java and Choosing an IDE

If you’re reading this article, it’s probably your first experience with Java — and perhaps with programming in general. In this article, we’ll go over how to install the Java SDK, choose an IDE, and write a simple program to make sure everything is working correctly. After discussing why Java can be a great choice for both beginners and experienced developers, let’s now see how to install the Java SDK and choose the most suitable IDE. ...

June 22, 2025 · 3 min · 

Java: What It Is and Why You Should Learn It

Java is an object-oriented programming (OOP) language, known as a strongly-typed language, meaning that variable types are specified statically directly in the source code. Java was created in 1992 at Stanford University under the name “Oak,” later renamed to “Java” due to copyright issues (source). The main strength of Java is probably its portability: it can run on different platforms without modifying the code, making it extremely versatile and contributing to its widespread adoption. ...

April 26, 2025 · 2 min · 

Spring Framework – Part 2

In the previous articles… As we introduced in the first article, Spring is an excellent tool for Java application development. We also explored how to set up a basic project and create an initial, simple API. In this article, we’ll connect the project to a database, specifically PostgreSQL, and explore how to persist and manipulate saved data. PostgreSQL PostgreSQL, originally known as “post-ingres,” was conceived by Michael Stonebraker in 1985. It serves as a robust alternative to other relational databases like MySQL. The key distinction of PostgreSQL lies in its support for defining custom data types (based on standard SQL types) and data type inheritance. For detailed insights, refer to the official website. ...

November 9, 2024 · 4 min · 

Spring Framework – Part 1

What is a Framework A Framework, in simple terms, is a set of predefined classes, libraries, and tools that provide a basic structure for software development. The use of a framework allows developers to avoid implementing basic features from scratch, enabling them to focus on developing specific, customized functionalities for their projects. Spring Spring is an open-source framework for Java application development. The first version of the framework was released in 2003 by Rod Johnson, and it has been enhanced over the years with a series of extensions. Over time, Spring has earned a leading role in Java application development, thanks to its highly active community and the vast availability of documentation and practical examples. ...

October 6, 2024 · 5 min ·