How To Install libhibernate-commons-annotations-java on Ubuntu 18.04

In this tutorial we learn how to install libhibernate-commons-annotations-java on Ubuntu 18.04. libhibernate-commons-annotations-java is Hibernate Commons Annotations

Introduction

In this tutorial we learn how to install libhibernate-commons-annotations-java on Ubuntu 18.04.

What is libhibernate-commons-annotations-java

libhibernate-commons-annotations-java is:

Hibernate, like all other object/relational mapping tools, requires metadata that governs the transformation of data from one representation to the other (and vice versa). As an option, you can now use JDK 5.0 annotations for object/relational mapping with Hibernate 3.2. You can use annotations in addition to or as a replacement of XML mapping metadata.

You can use Hibernate extension annotations on top of standardized Java Persistence annotations to utilize all native Hibernate features.

This package ships the Hibernate Commons Annotations classes used by annotations based Hibernate sub-projects.

There are three methods to install libhibernate-commons-annotations-java on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libhibernate-commons-annotations-java Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libhibernate-commons-annotations-java using apt-get by running the following command:

sudo apt-get -y install libhibernate-commons-annotations-java

Install libhibernate-commons-annotations-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libhibernate-commons-annotations-java using apt by running the following command:

sudo apt -y install libhibernate-commons-annotations-java

Install libhibernate-commons-annotations-java Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libhibernate-commons-annotations-java using aptitude by running the following command:

sudo aptitude -y install libhibernate-commons-annotations-java

How To Uninstall libhibernate-commons-annotations-java on Ubuntu 18.04

To uninstall only the libhibernate-commons-annotations-java package we can use the following command:

sudo apt-get remove libhibernate-commons-annotations-java

Uninstall libhibernate-commons-annotations-java And Its Dependencies

To uninstall libhibernate-commons-annotations-java and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libhibernate-commons-annotations-java

Remove libhibernate-commons-annotations-java Configurations and Data

To remove libhibernate-commons-annotations-java configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libhibernate-commons-annotations-java

Remove libhibernate-commons-annotations-java configuration, data, and all of its dependencies

We can use the following command to remove libhibernate-commons-annotations-java configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libhibernate-commons-annotations-java

References

Summary

In this tutorial we learn how to install libhibernate-commons-annotations-java package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.