In java there is a script manager that allows javas call to javascript, for example:
import javax.script.*; public class ExecuteScript { public static void main(String[] args) throws Exception {
My question is: if I have a sayHi () function, can I use javascript using a script mechanism to call a Java function? Thank you
DNB5brims
source share