How To Install bsf on CentOS 7
Introduction
In this tutorial we learn how to install bsf
on CentOS 7.
What is bsf
Bean Scripting Framework (BSF) is a set of Java classes which provides scripting language support within Java applications, and access to Java objects and methods from scripting languages. BSF allows one to write JSPs in languages other than Java while providing access to the Java class library. In addition, BSF permits any Java application to be implemented in part (or dynamically extended) by a language that is embedded within it. This is achieved by providing an API that permits calling scripting language engines from within Java, as well as an object registry that exposes Java objects to these scripting language engines. BSF supports several scripting languages currently * Javascript (using Rhino ECMAScript, from the Mozilla project) * Python (using either Jython or JPython) * Tcl (using Jacl) * NetRexx (an extension of the IBM REXX scripting language in Java) * XSLT Stylesheets (as a component of Apache XML project’s Xalan and Xerces) In addition, the following languages are supported with their own BSF engines * Java (using BeanShell, from the BeanShell project) * JRuby * JudoScript
We can use yum
or dnf
to install bsf
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install bsf.
Install bsf on CentOS 7 Using yum
Update yum database with yum
using the following command.
After updating yum database, We can install bsf
using yum
by running the following command:
Install bsf 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.
After updating yum database, We can install bsf
using dnf
by running the following command:
How To Uninstall bsf on CentOS 7
To uninstall only the bsf
package we can use the following command:
References
Summary
In this tutorial we learn how to install bsf
on CentOS 7 using yum
and dnf
.