Articles, Home

Java String Encryption Decryption Example

In this tutorial, we will see how to use AES(Advanced Encryption Standard) algorithm to string or text in Java with an example.Java support many secure encryption algorithms but some of them are weak to be used in security-intensive applications. For example, the Data Encryption Standard (DES) encryption algorithm is considered highly insecure; messages encrypted using DES have been decrypted by brute force within a single day by machines such as the Electronic Frontier Foundation’s (EFF) Deep Crack.

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…