Differences between revisions 1 and 2
Revision 1 as of 2006-07-06 04:11:59
Size: 77
Editor: 12-214-79-52
Comment:
Revision 2 as of 2006-07-06 17:36:16
Size: 740
Editor: JoshJuneau
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

One of the most powerful features of Jython is that it is possible to access Jython code directly within a Java application. Many times performing simple tasks within Java can produce bloated code which is difficult to maintain. Jython gives you the ability to take that same code and reduce the complexity, producing easier to read and highly maintainable code.

The key behind accessing jython code from within a java appliation is the "jythonc" utility. This utility has the ability to compile jython code into a compatible java source. ''jythonc'' can also create jar files, freeze associated code modules, enable dependency tracking, and much more.

Accessing your Jython code from Java

Submitted by: Josh Juneau

One of the most powerful features of Jython is that it is possible to access Jython code directly within a Java application. Many times performing simple tasks within Java can produce bloated code which is difficult to maintain. Jython gives you the ability to take that same code and reduce the complexity, producing easier to read and highly maintainable code.

The key behind accessing jython code from within a java appliation is the "jythonc" utility. This utility has the ability to compile jython code into a compatible java source. jythonc can also create jar files, freeze associated code modules, enable dependency tracking, and much more.

JythonMonthly/Articles/July2006/1 (last edited 2008-11-15 09:15:58 by localhost)