So you aren't allowed to use Jython for the production code you develop at work. You can, instead, use it to help you on your daily tasks and activities writing that Java code. The question is: How do you use Jython and how did that help your development and/or productivity?
|
|
|
|
|
|
|
I run a Jython command line, and dynamically create/interrogate my classes on the command line. I find that very effective for determining how classes will respond to various inputs (usually these get coded up into tests and the like). I also found this very useful for learning Swing - dynamically resizing/repacking and adding/removing components. You can do the same with other Java scripting languages (e.g. BeanShell) but Jython's the one I picked up on and used first. |
||
|
|
|
|
I use litte scripts to run ant-scripts starting and stopping jboss ... the scripts run everywhere win and linux (no need for special .bat /.sh) as an example my little util.py (to import)
.. and i run test in eclipse with jython (pydev). jython is perfect to write little tests of your java code. |
||||||
|
|
|
I use Jython to access a Sybase database using the |
||
|
|
|
|
we use jython to run 'jybot', the test runner that is part of the robot framework. It lets us write java code as the glue between our java code and our test scripts. |
||
|
|
|
|
Because:
I use Jython with zxJDBC to do some tools like benchmarking queries, testing schema etc. For examaple I created tool to export Oracle database information (tables, columns, triggers, procedures) which can be used with Python+cx_Oracle or Jython+Oracle JDBC driver. |
||
|
|
