Articles, Home

Java Connect to MySQL Database

In this post, we will see how to connect Java application with MySQL database.JDBC stands for Java Database Connectivity, which is a standard Java API for database-independent connectivity between the Java programming language and a wide range of databases.

Articles, Home

Master Apache JMeter

The book “Master Apache JMeter From load testing to DevOps” provides an impressive amount of knowledge on how to successfully do performance testing with JMeter.

Articles, Home

Optimize your code for Quarkus

My previous article, was about running a JakartaEE/MicroProfile application with minimum changes. My purpose was to keep the Java code as standard as possible so that it can keep running on other i…

Articles, Home

Java Strings

Java Strings are sequences of characters which make up a code, name, sentence or whateever else you need to represent with characters. Java Strings are represented as arrays of characters internally in memory. This Java String tutorial explains how to work with Java Strings.