I have a java application that connects to a biometric. The idea is to execute its functions from an app in node through Java. Is it possible to call this Java function from node? For example:
public static void llamando() {
System.out.println("Hola Mundo");
}
When you press a button from Node:
$('call_java_function').click(function(){
llamando();
});
Note: it's java desktop.