Scripting for the Java Platform: Difference between revisions
Appearance
Content deleted Content added
Page is restored |
mNo edit summary |
||
Line 1: | Line 1: | ||
'''Scripting for the Java Platform''' is a framework for embedding [[scripting language|scripts]] into [[Java (programming language)|Java]] [[source code]]. |
'''Scripting for the Java Platform''' is a framework for embedding [[scripting language|scripts]] into [[Java (programming language)|Java]] [[source code]]. |
||
There is no requirement for a given [[Java |
There is no requirement for a given [[Java virtual machine]] (JVM) to include any engines by default, but the Oracle JVM (Java 6 and later) includes a [[JavaScript engine]], based on [[Rhino (JavaScript engine)|Rhino]] version 1.6R2 before Java 8, and [[Nashorn (JavaScript engine)|Nashorn]] since Java 8. |
||
Scripting for the [[Java Platform]] was developed under the [[Java Community Process]] as '''JSR 223'''. The final release of JSR 223 happened on December 11, 2006. The specification, however, was withdrawn later on December 13, 2016 after a Maintenance Review Ballot,<ref>[https://jcp.org/en/jsr/detail?id=223 JSR 223 Detail]</ref> where it was decided that this functionality would be included as an integral part of [[Java 9]] and onward. |
Scripting for the [[Java Platform]] was developed under the [[Java Community Process]] as '''JSR 223'''. The final release of JSR 223 happened on December 11, 2006. The specification, however, was withdrawn later on December 13, 2016 after a Maintenance Review Ballot,<ref>[https://jcp.org/en/jsr/detail?id=223 JSR 223 Detail]</ref> where it was decided that this functionality would be included as an integral part of [[Java 9]] and onward. |
||
Line 14: | Line 14: | ||
{{reflist}} |
{{reflist}} |
||
==Bibliography== |
== Bibliography == |
||
{{refbegin}} |
{{refbegin}} |
||
*{{citation |
*{{citation |
Latest revision as of 20:53, 20 March 2022
Scripting for the Java Platform is a framework for embedding scripts into Java source code.
There is no requirement for a given Java virtual machine (JVM) to include any engines by default, but the Oracle JVM (Java 6 and later) includes a JavaScript engine, based on Rhino version 1.6R2 before Java 8, and Nashorn since Java 8.
Scripting for the Java Platform was developed under the Java Community Process as JSR 223. The final release of JSR 223 happened on December 11, 2006. The specification, however, was withdrawn later on December 13, 2016 after a Maintenance Review Ballot,[1] where it was decided that this functionality would be included as an integral part of Java 9 and onward.
See also
[edit]References
[edit]Bibliography
[edit]- Bosanac, Dejan (August 19, 2007), Scripting in Java: Languages, Frameworks, and Patterns (1st ed.), Addison-Wesley Professional, p. 552, ISBN 978-0-321-32193-0
External links
[edit]- JSR 223: Scripting for the Java Platform Specification Request
- Roth, Gregor (November 20, 2007). "Scripting on the Java platform". JavaWorld. Retrieved 2020-07-27.
- O'Conner, John (July 2006). "Scripting for the Java Platform". Sun Microsystems. Retrieved 2020-07-27.
- Tremblett, Paul (March 8, 2009). "JSR 223: Scripting for the Java Platform". Dr. Dobb's Journal. Retrieved 2020-07-27.
- Java Scripting Programmer's Guide for Java SE 14 at Oracle