Hello,
I haven't found the source code of JasperETL or its relative documentation.
Where I can find it?
Best regards.
Post edited by: marco83, at: 2008/01/10 10:00
I haven't found the source code of JasperETL or its relative documentation.
Where I can find it?
Best regards.
Post edited by: marco83, at: 2008/01/10 10:00
6 Answers:
Posted on January 10, 2008 at 1:53pm
I haven't found documentation.
In particular I need to know how JasperETL generates the Java code. I've seen that there are many classes to allow the generation of code (for each component used) but I haven't understand where and when they were used.
Can I have a brief explanation?
Thanks.
In particular I need to know how JasperETL generates the Java code. I've seen that there are many classes to allow the generation of code (for each component used) but I haven't understand where and when they were used.
Can I have a brief explanation?
Thanks.
Posted on January 16, 2008 at 5:07am
Source and binaries are located at: https://sourceforge.net/project/showfiles.php?group_id=187887&package_id=219523&release_id=567760
And can be linked to from this page:
http://www.jasperforge.org/index.php?option=com_content&task=section&id=16&Itemid=277
And can be linked to from this page:
http://www.jasperforge.org/index.php?option=com_content&task=section&id=16&Itemid=277
Posted on January 16, 2008 at 1:40pm
Thanks for your link. It's very useful.
I've a problem. I want to create a job without use the graphical interface. For this reason I would know the instruction that invoke the generation of the code of a specific job. I'm seeking between the source code but it's very difficult without help.
Can you help me?
I've a problem. I want to create a job without use the graphical interface. For this reason I would know the instruction that invoke the generation of the code of a specific job. I'm seeking between the source code but it's very difficult without help.
Can you help me?
Posted on January 16, 2008 at 5:27pm
It's not really the intention of JasperETL to support creating jobs without using the GUI. The expectation is that the GUI provides developers a good environment for building jobs. Of course it's certainly possible in principle to build jobs without the GUI, but I don't think there are currently many folks using the tool in this way.
Maybe you could explain the reasons why you want to use the tool like this.
Maybe you could explain the reasons why you want to use the tool like this.
Posted on January 16, 2008 at 5:58pm
I would like to use Jasper to perform transformations of documents recalling its functionalities from a class Java. In practice I would like to write a class Java that allows to perform a job memorized on Jasper.
Then I wanted to know if it were possible to know the way to load a job (generate the appropriate class java) and to run it.
In final I need only the comands to invocate the generation of the code using the XML that describe the jobs.
I hope someone help me.
Post edited by: marco83, at: 2008/01/17 13:59
Then I wanted to know if it were possible to know the way to load a job (generate the appropriate class java) and to run it.
In final I need only the comands to invocate the generation of the code using the XML that describe the jobs.
I hope someone help me.
Post edited by: marco83, at: 2008/01/17 13:59
Posted on January 21, 2008 at 3:05pm
I've understood that the class processUtilities manages the generation of code with the instruction
generateCode(IProcess process, IContext context, boolean statistics, boolean trace, boolean properties)
where IProcess is an interface implemented by the class Process that manages the information contained into the XML file of the process with the extention .properties.
With the instruction getMasterJob I can take the information by the file with the extension .item
It's right?
The question is: how can I do to load the file .property? There is a method called loadXmlFile but I haven't understood how can I use this or what is the meaning of the argument ProcessType.
p.s. Can I create a new Process or I must use a factory?
Please help me.
Best regards
generateCode(IProcess process, IContext context, boolean statistics, boolean trace, boolean properties)
where IProcess is an interface implemented by the class Process that manages the information contained into the XML file of the process with the extention .properties.
With the instruction getMasterJob I can take the information by the file with the extension .item
It's right?
The question is: how can I do to load the file .property? There is a method called loadXmlFile but I haven't understood how can I use this or what is the meaning of the argument ProcessType.
p.s. Can I create a new Process or I must use a factory?
Please help me.
Best regards