Tagged Questions

1
vote
2answers
96 views

Choosing scripting language

I'm trying to choose between groovy and beanshell, I need one that is in active development, is moderately fast, can access/interpret java code and support restriction to which java classes it can ...
1
vote
2answers
320 views

Is there a groovy equivalent to the beanshell source() method?

I've scoured the groovy doc and haven't found an analogue, but things there are organized a bit haphazardly. I'm switching from beanshell to groovy and was using the source("fileloc") method in ...
0
votes
1answer
35 views

Protect Groovy/BeanShell Generated Classes

I'm planning to embed groovy/beanshell in my app but I'm concerned about protecting the script and any dynamically generated classes from been viewed and modified by users to access my app codes. The ...