Difference between revisions of "Scripting"

From ADempiere
Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.
m
m (Fix link)
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
You can write custom business logic using Adempiere to extend adempiere function.  
 
You can write custom business logic using Adempiere to extend adempiere function.  
  
It supports [http://www.beanshell.org/ beanshell] based scripting, [https://scripting.dev.java.net/ JSR 223] scriptiing and [Goroovy] based scripting
+
It supports [http://www.beanshell.org/ beanshell] based scripting, [https://scripting.dev.java.net/ JSR 223] scriptiing and [http://groovy.codehaus.org/ Groovy] based scripting
  
 
Java SE 6 will contain JSR 223: Scripting for the JavaTM Platform API classes. This Framework can be used to host Script Engines in Java Applications.  
 
Java SE 6 will contain JSR 223: Scripting for the JavaTM Platform API classes. This Framework can be used to host Script Engines in Java Applications.  
Line 15: Line 15:
 
Goorvy is an agile and dynamic language for the Java Virtual Machine which makes modern programming features available to Java developers with almost-zero learning curve. It supports Domain-Specific Languages and other compact syntax so your code becomes easy to read and maintain. In Adempiere,  it seamlessly integrates with all existing Java classes and libraries and compiles straight to Java bytecode so you can use it anywhere you can use Java
 
Goorvy is an agile and dynamic language for the Java Virtual Machine which makes modern programming features available to Java developers with almost-zero learning curve. It supports Domain-Specific Languages and other compact syntax so your code becomes easy to read and maintain. In Adempiere,  it seamlessly integrates with all existing Java classes and libraries and compiles straight to Java bytecode so you can use it anywhere you can use Java
  
[http://www.beanshell.org/intro.html BeanShell] is a small, free, embeddable Java source interpreter with object scripting language features, written in Java. BeanShell dynamically executes standard Java syntax and extends it with common scripting conveniences such as loose types, commands, and method closures like those in Perl and JavaScript.  
+
[http://www.beanshell.org/intro.html BeanShell] is a small, free, embeddable Java source interpreter with object scripting language features, written in Java. BeanShell dynamically executes standard Java syntax and extends it with common scripting conveniences such as loose types, commands, and method closures like those in Perl and JavaScript.
  
 
== Related Articles ==
 
== Related Articles ==

Latest revision as of 05:37, 31 March 2011

Table of Contents{{#if: | | [[{{{2}}}]] }}{{#if: | | [[{{{3}}}]] }}{{#if: | | [[{{{4}}}]] }}{{#if: | | [[{{{5}}}]] }} | Scripting{{#if: Script Callout| | Script Callout }} ⇒

Introduction

You can write custom business logic using Adempiere to extend adempiere function.

It supports beanshell based scripting, JSR 223 scriptiing and Groovy based scripting

Java SE 6 will contain JSR 223: Scripting for the JavaTM Platform API classes. This Framework can be used to host Script Engines in Java Applications.

Goorvy is an agile and dynamic language for the Java Virtual Machine which makes modern programming features available to Java developers with almost-zero learning curve. It supports Domain-Specific Languages and other compact syntax so your code becomes easy to read and maintain. In Adempiere, it seamlessly integrates with all existing Java classes and libraries and compiles straight to Java bytecode so you can use it anywhere you can use Java

BeanShell is a small, free, embeddable Java source interpreter with object scripting language features, written in Java. BeanShell dynamically executes standard Java syntax and extends it with common scripting conveniences such as loose types, commands, and method closures like those in Perl and JavaScript.

Related Articles

See Also