Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Development Guidelines/Setup for JAXB code generation"

 
(29 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This page describes additional setup steps you need to do if you want to use JAXB to generate classes from XML schema descriptions for SMILA. This is also needed to be able to extend SMILA XML configuration file schemas, because we mostly use JAXB to parse them.
+
=== Introduction ===
  
* Setup a build libraries as described in [[SMILA/Development Guidelines/Howto build a SMILA-Distribution]].
+
This page describes additional setup steps you need to do if you want to use JAXB to generate classes from XML schema descriptions for SMILA.
* Download the JAXB reference implementation 2.1.6 from [https://jaxb.dev.java.net/2.1.6/ https://jaxb.dev.java.net/2.1.6/], unpack it as described and copy <tt>jaxb-ri-20071219/lib/jaxb-xjc.jar</tt> to <tt>lib/xjc</tt> in the directory containing the additional libraries for building you created in the first step. Download <tt>InterfacesXJCPlugin.jar</tt> from [http://xml.w-wins.com/xjc-plugins/interfaces/ http://xml.w-wins.com/xjc-plugins/interfaces/] and add it to the lib/xjc directory, too. Your build lib directory should now look at least like this:
+
 
 +
=== Steps to install needed libraries ===
 +
 
 +
# Setup a build library as described in [[SMILA/Development Guidelines/Howto build a SMILA-Distribution]]. In this document we will use {{path|lib/}} as the root of it.
 +
# The required JAXB compiler libraries are contained in our [http://ubuntuone.com/312LdFKCXLYfapEpxLMR9v package of the SMILA build libraries]. If you want to collect them on your own, use these instructions:
 +
## Download the JAXB reference implementation 2.1.6 or above from [http://jaxb.java.net/ http://jaxb.java.net/]
 +
## unpack it with (see [https://jaxb.dev.java.net/2.1.6/ here]) <source lang="text">java -jar <JAXB-version>.jar </source>
 +
## copy the following into your <tt>lib/xjc</tt>  
 +
##* all jars in the {{path|jaxb-ri-<version>/lib/}}
 +
##* <tt>InterfacesXJCPlugin.jar</tt>, you can download it [https://www.dropbox.com/s/fiegug07oygn9uk/InterfacesXJCPlugin.jar here]  
 +
 
 +
Your build lib directory should now look at least like this:
 
<source lang="text">
 
<source lang="text">
 
lib/
 
lib/
 
   ant-contrib/
 
   ant-contrib/
       ant-contrib-1.0b1.jar
+
       ant-contrib-1.0b3.jar
 
   xjc/
 
   xjc/
 +
      jaxb-api.jar
 +
      jaxb-impl.jar
 
       jaxb-xjc.jar
 
       jaxb-xjc.jar
 
       InterfacesXJCPlugin.jar
 
       InterfacesXJCPlugin.jar
 
</source>
 
</source>
* If you have setup an [[SMILA/Development Guidelines/How to set up integration environment|integration environment]]:
 
** From <tt>jaxb-ri-20071219/lib/</tt> copy also there jars to <tt>lib/xjc</tt>:
 
<source lang="text">
 
lib/
 
  xjc/
 
      ...
 
      activation.jar
 
      jaxb-api.jar
 
      jaxb-impl.jar
 
      jsr173_1.0_api.jar     
 
</source>
 
** You need to checkout at least the bundle <tt>SMILA.builder</tt> from the SMILA subversion repository [http://dev.eclipse.org/svnroot/rt/org.eclipse.smila/ http://dev.eclipse.org/svnroot/rt/org.eclipse.smila/]. Choose the version from the tag matching the SMILA version you want to develop for or use trunk.
 
** In file <tt>SMILA.builder/xjc/build.xml</tt> remove these lines from the path definition <tt>xjc.classpath</tt>:
 
<source lang="xml">
 
    <fileset dir="../SMILA.extension/eclipse/plugins/" includes="javax.activation*.jar" />
 
    <fileset dir="../javax.xml.bind" includes="*.jar" />
 
    <fileset dir="../javax.xml.stream" includes="*.jar" />
 
    <fileset dir="../com.sun.jaxb" includes="*.jar" />
 
</source>
 
* If you want to generate JAXB classes for a new crawler configuration:
 
** If you do not yet have a binary distribution of SMILA: [http://www.eclipse.org/smila/downloads.php Download] or build one.
 
** Copy <tt>org.eclipse.smila.connectivity.framework.schema_0.5.0.jar</tt> from the plugins directory of the SMILA distribution to <tt>lib/xjc</tt>. This is necessary because crawler configurations extend a base schema and therefore need to access classes in this bundle.
 
* Put your bundle next to all the SMILA source bundles.
 
* Create a <tt>schemas</tt> directory in your bundle and put the XSD and JXB file there (use the same basename and <tt>xsd</tt> and <tt>jxb</tt> as suffixes).
 
* Create a <tt>build.xml</tt> in the bundle directory with this content, replace $SCHEMA_NAME with the basename of the XSD/JXB files:
 
  
<source lang="xml">
+
=== Generate Sources  from Command line ===
<project name="sub-build" default="compile-schema-and-decorate" basedir=".">
+
  <property name="schema.name" value="$SCHEMA_NAME" />
+
  <import file="../SMILA.builder/xjc/build.xml" />
+
</project>
+
</source>
+
  
* You can optionally add a file <tt>copyright.txt</tt> to the bundle (next to build.xml) containing a copyright header for the generated files (use valid Java comment syntax).
+
#  Put <tt>[http://dev.eclipse.org/svnroot/rt/org.eclipse.smila/trunk/SMILA.builder SMILA.builder]</tt> into the same folder as the bundle for which you are generating the folder (for all SMILA bundles this is the case after a checkout).    
* Add a <tt>code/gen</tt> folder to your bundle and add it as a source folder.
+
To generate the classes, you can now use:<source lang="text">
 
+
To generate the classes, you can now use:
+
 
+
<source lang="text">
+
 
ant -Dlib.dir=<SMILA-Build-Lib-Dir>
 
ant -Dlib.dir=<SMILA-Build-Lib-Dir>
 
</source>
 
</source>
  
If you have created the folder with the build libs in the same directory where the source bundles are located, you can just use:
+
The JAXB classes should now be generated in the <tt>code/gen</tt> directory of your bundle.
  
<source lang="text">
 
ant
 
</source>
 
 
The JAXB classes should now be generated in the <tt>code/gen</tt> directory of your bundle.
 
  
 
[[Category:SMILA]]
 
[[Category:SMILA]]

Latest revision as of 04:23, 22 April 2014

Introduction

This page describes additional setup steps you need to do if you want to use JAXB to generate classes from XML schema descriptions for SMILA.

Steps to install needed libraries

  1. Setup a build library as described in SMILA/Development Guidelines/Howto build a SMILA-Distribution. In this document we will use lib/ as the root of it.
  2. The required JAXB compiler libraries are contained in our package of the SMILA build libraries. If you want to collect them on your own, use these instructions:
    1. Download the JAXB reference implementation 2.1.6 or above from http://jaxb.java.net/
    2. unpack it with (see here)
      java -jar <JAXB-version>.jar
    3. copy the following into your lib/xjc
      • all jars in the jaxb-ri-<version>/lib/
      • InterfacesXJCPlugin.jar, you can download it here

Your build lib directory should now look at least like this:

lib/
   ant-contrib/
      ant-contrib-1.0b3.jar
   xjc/
      jaxb-api.jar
      jaxb-impl.jar
      jaxb-xjc.jar
      InterfacesXJCPlugin.jar

Generate Sources from Command line

  1. Put SMILA.builder into the same folder as the bundle for which you are generating the folder (for all SMILA bundles this is the case after a checkout).
  2. To generate the classes, you can now use:
    ant -Dlib.dir=<SMILA-Build-Lib-Dir>

The JAXB classes should now be generated in the code/gen directory of your bundle.

Back to the top