How To Install ws-jaxme on CentOS 7

In this tutorial we learn how to install ws-jaxme on CentOS 7. ws-jaxme is Open source implementation of JAXB

Introduction

In this tutorial we learn how to install ws-jaxme on CentOS 7.

What is ws-jaxme

A Java/XML binding compiler takes as input a schema description (in most cases an XML schema, but it may be a DTD, a RelaxNG schema, a Java class inspected via reflection, or a database schema). The output is a set of Java classes * A Java bean class matching the schema description. (If the schema was obtained via Java reflection, the original Java bean class.) * Read a conforming XML document and convert it into the equivalent Java bean. * Vice versa, marshal the Java bean back into the original XML document.

We can use yum or dnf to install ws-jaxme on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ws-jaxme.

Install ws-jaxme on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install ws-jaxme using yum by running the following command:

sudo yum -y install ws-jaxme

Install ws-jaxme on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install ws-jaxme using dnf by running the following command:

sudo dnf -y install ws-jaxme

How To Uninstall ws-jaxme on CentOS 7

To uninstall only the ws-jaxme package we can use the following command:

sudo dnf remove ws-jaxme

References

Summary

In this tutorial we learn how to install ws-jaxme on CentOS 7 using yum and dnf.