Learn about namespaces in XML

If you, who have ever worked on XML files, are more or less aware of the namespace concept in XML. Let me give you the following example to give you a first look at it:

Declaring xmlns:c1=”https://huongdanjava.com/class1″ or xmlns:c2=”https://huongdanjava.com/class2″ then the xmlns:c1 or xmlns:c2… Read More

Basic about Hibernate

Hibernate, as I say in this tutorial, besides implementing the JPA specification, also implements its own framework for connecting and manipulating with database management systems. In this first tutorial about Hibernate, I will go straight to an example of using Hibernate to get database data,… Read More

Copy file using SSH

SSH is a tool for us to log on to another machine from our computer. This tutorial will guide you how to copy any file from one computer to another using SSH. To copy a file from your computer to another machine, use the following… Read More

Change password for MySQL user

To change the password of any MySQL user, please login to MySQL with the user have right permission to change the data in the database. Here, I will use the root account:

Enter and then enter the password. By default, all user information is… Read More