Scripting language to embed into a Java server application

Posted by Alexey Kalmykov on Stack Overflow See other posts from Stack Overflow or by Alexey Kalmykov
Published on 2010-04-22T21:08:32Z Indexed on 2010/04/22 21:33 UTC
Read the original article Hit count: 272

I want to make a business logic of server side Java application as a set of scripts. So I need from a scripting engine:

  1. Maximum Java interoperability (i.e. Spring framework)
  2. Script reloading and recompiling
  3. Easy DB access from scripting language
  4. Clear and simple syntax (some DSL capabilities would be nice to have), easy learning curve for non-hardcore developers
  5. Performance and stability

I had some experience in the similar project with Rhino and it was pretty good. But I want to see if there is something better. Currently I'm looking into Groovy. JRuby and Jython are a bit more complex than I need for this task. Any other suggestion? What to take into consideration?

© Stack Overflow or respective owner

Related posts about java

Related posts about scripting-language