How To Install libgeronimo-commonj-spec-java on Ubuntu 18.04

In this tutorial we learn how to install libgeronimo-commonj-spec-java on Ubuntu 18.04. libgeronimo-commonj-spec-java is Java API for concurrent programming of EJBs and Servlets

Introduction

In this tutorial we learn how to install libgeronimo-commonj-spec-java on Ubuntu 18.04.

What is libgeronimo-commonj-spec-java

libgeronimo-commonj-spec-java is:

The CommonJ API enables concurrent programming of EJBs and Servlets within a J2EE application. This API is also known as Timer and Work Manager API.

The CommonJ API contains the following components:

  • Timer API: The Timer API allows applications to schedule and receive timer notification callbacks for a specific listener defined within an application. Timers allow you to schedule and perform work at specific times or intervals.
  • Work Manager API: The Work Manager API allows an application to prioritize work within an EJB or Servlet. Applications can programmatically execute multiple work items within a container.

There are three methods to install libgeronimo-commonj-spec-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 libgeronimo-commonj-spec-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 libgeronimo-commonj-spec-java using apt-get by running the following command:

sudo apt-get -y install libgeronimo-commonj-spec-java

Install libgeronimo-commonj-spec-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgeronimo-commonj-spec-java using apt by running the following command:

sudo apt -y install libgeronimo-commonj-spec-java

Install libgeronimo-commonj-spec-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 libgeronimo-commonj-spec-java using aptitude by running the following command:

sudo aptitude -y install libgeronimo-commonj-spec-java

How To Uninstall libgeronimo-commonj-spec-java on Ubuntu 18.04

To uninstall only the libgeronimo-commonj-spec-java package we can use the following command:

sudo apt-get remove libgeronimo-commonj-spec-java

Uninstall libgeronimo-commonj-spec-java And Its Dependencies

To uninstall libgeronimo-commonj-spec-java and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libgeronimo-commonj-spec-java

Remove libgeronimo-commonj-spec-java Configurations and Data

To remove libgeronimo-commonj-spec-java configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libgeronimo-commonj-spec-java

Remove libgeronimo-commonj-spec-java configuration, data, and all of its dependencies

We can use the following command to remove libgeronimo-commonj-spec-java configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libgeronimo-commonj-spec-java

References

Summary

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