Skip to content

NashornIntegration

Tobias Soloschenko edited this page Mar 4, 2016 · 12 revisions

The Nashorn module is used to run JavaScript on the server side by posting a script to an ResourceReference which is intended to execute it.

Before the script is actually executed it is translated into an AST (Abstract Syntax Tree) and abort statements are injected to prevent the script to run endless. If the script hits the maximum run duration the thread which executes it is going to be interrupted and all loops and function calls are going to be skipped.

Another feature is that you are able to monitor the actual allocated bytes of the thread which runs the script and abort the process if a given amount of memory is exceeded.

Clone this wiki locally