Can I use beans that contain native methods in JSP?
Created May 4, 2012
Serge Knystautas
Yes, your JSP is compiled into a Java class behind the scenes for you, and you can do anything you could do elsewhere in Java. Check out JNI for how to interact with native code.