giraffplus:3rdparty
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
giraffplus:3rdparty [2013-07-18 11:56] – filippo | giraffplus:3rdparty [2013-07-18 12:17] (current) – [If You Have the Following Execution Errors when Starting Your Bundle] filippo | ||
---|---|---|---|
Line 17: | Line 17: | ||
First check the following in your project' | First check the following in your project' | ||
- | # The " | + | - The " |
- | # That the plugin/ | + | |
- | # Make sure it says < | + | |
- | == Your Third-Party JARs Should be Specified as Maven Dependencies == | + | ===== Your Third-Party JARs Should be Specified as Maven Dependencies |
- | Your third-party JARs should be specified as dependencies of your project in the " | + | Your third-party JARs should be specified as dependencies of your project in the " |
This means, of course, that you will need to know the " | This means, of course, that you will need to know the " | ||
- | * http:// | + | |
- | * https:// | + | |
- | * http:// | + | * https:// |
- | * http:// | + | * http:// |
+ | * http:// | ||
However, if it is impossible to locate a maven repository which contains your third-party JAR, then you will need to load the JAR into your local repository manually. This can be done with a Maven command, for example: | However, if it is impossible to locate a maven repository which contains your third-party JAR, then you will need to load the JAR into your local repository manually. This can be done with a Maven command, for example: | ||
Line 41: | Line 42: | ||
And then make sure that the JAR's groupId and artifactId (and version) are specified as a dependency in your pom.xml file. | And then make sure that the JAR's groupId and artifactId (and version) are specified as a dependency in your pom.xml file. | ||
- | === If the Third Party JAR Is Not in a Public Repository === | + | ==== If the Third Party JAR Is Not in a Public Repository |
- | You can download the third-party JAR from the owner' | + | You can download the third-party JAR from the owner' |
- | mvn deploy: | + | mvn deploy: |
This makes building our components which depend on these third-party JAR files easier to build. | This makes building our components which depend on these third-party JAR files easier to build. | ||
- | For example, I added the ROME libraries to our repository using the following: | + | For example, |
- | mvn deploy: | + | mvn deploy: |
- | And now, anyone building the RSS feeder | + | anyone building the application that need it will no longer have to manually install the TEST libraries onto their own local repository. Instead, Maven will automatically |
- | == Creating the Bundle == | + | ===== Creating the Bundle |
Now we're ready to try and create the bundle. Note that it is almost guaranteed to return errors which will need to be corrected. Do not fret. | Now we're ready to try and create the bundle. Note that it is almost guaranteed to return errors which will need to be corrected. Do not fret. | ||
Line 73: | Line 74: | ||
mvn -Dmaven.test.skip=true clean package | mvn -Dmaven.test.skip=true clean package | ||
- | == Embedding Dependencies == | + | ===== Embedding Dependencies |
If you get the following error, you will need to go through the following procedure to include your third-party JARs into your bundle: | If you get the following error, you will need to go through the following procedure to include your third-party JARs into your bundle: | ||
- | [ERROR] Error building bundle | + | [ERROR] Error building bundle |
This process can be time-consuming and frustrating, | This process can be time-consuming and frustrating, | ||
- | 1. | + | ==== 1. Embed dependencies of the JARs which are specified in your POM as dependencies. |
- | | + | For example: |
+ | |||
+ | | ||
< | < | ||
- | In the above example, "tika" is the artifact name of the dependency that I want to embed. The above should be added to the plugin/ | + | In the above example, "test" is the artifact name of the dependency that I want to embed. The above should be added to the plugin/ |
- | + | ||
- | If you have multiple dependencies to include, specify them all separated by commas. | + | |
- | + | ||
- | If you have lots and lots of dependencies, | + | |
< | < | ||
< | < | ||
- | 2. Then, run the "mvn clean package" | + | ==== 2. Run the "mvn clean package" |
+ | |||
+ | ==== 3. Still errors. ==== | ||
- | 3. | + | Once you've done this, all dependencies are included. However, there will still likely be many java packages which can not be found by the maven bundle plug-in. |
If maven didn't include the JARs for these packages automatically, | If maven didn't include the JARs for these packages automatically, | ||
Line 120: | Line 121: | ||
After some time, and lots of executing of the " | After some time, and lots of executing of the " | ||
- | == Verifying Your Bundle == | + | ===== Verifying Your Bundle |
Open up the bundle .JAR file and verify the following: | Open up the bundle .JAR file and verify the following: | ||
- | # Does it have your ComponentFactory.xml at the top level? | + | * Does it have a META-INF/ |
- | # Does it have a META-INF/ | + | |
- | #* Are the contents of the manifest correct? | + | |
- | # Does it have your classes in it? | + | |
- | # Does it have the com.searchtechnologies.aspire.framework classes in it? (It should.) | + | |
- | # Does it have the com.searchtechnologies.aspire.services classes in it? (It should not.) | + | |
- | # Does it contain the 3rd party JARs at the top level, embedded in your JAR? | + | |
- | == Problems You May Discover Running Your Bundle in Apache Felix == | + | ===== Problems You May Discover Running Your Bundle in Apache Felix ===== |
First, try running your bundle in the application. | First, try running your bundle in the application. | ||
- | If your bundle installs but does not start, try installing the bundle by hand within the | + | If your bundle installs but does not start, try installing the bundle by hand within the Felix console. For example: |
- | Felix console. For example: | + | |
- | | + | < |
- | . | + | |
- | | + | ... |
- | | + | |
-> start 12 | -> start 12 | ||
org.osgi.framework.BundleException: | org.osgi.framework.BundleException: | ||
+ | </ | ||
- | Notice the unresolved constraint above. This is something which will need to be added to your POM | + | Notice the unresolved constraint above. This is something which will need to be added to your POM as an imported package. Change your pom.xml file, add the package to the Import-Package statement, re-build your bundle JAR, and then try again. |
- | as an imported package. Change your pom.xml file, add the package to the Import-Package statement, re-build your bundle JAR, and then try again. | + | |
- | == If You Have the Following Execution Errors when Starting Your Bundle | + | ===== Other Hints and Tricks |
- | + | ||
- | >> Provider for javax.xml.transform.TransformerFactory cannot be found | + | |
- | + | ||
- | >> Provider for javax.xml.parsers.SAXParserFactory cannot be found | + | |
- | + | ||
- | >> com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl cannot be cast to javax.xml.transform.sax.SAXTransformerFactory | + | |
- | + | ||
- | >> loader constraint violation: when resolving method " | + | |
- | + | ||
- | >> Caused by: javax.xml.transform.TransformerException: | + | |
- | + | ||
- | >> Class not found: | + | |
- | + | ||
- | >> Unable to load class | + | |
- | + | ||
- | If you have thes execution errors when starting your bundle, add the following to your < | + | |
- | + | ||
- | javax.xml.parsers, | + | |
- | + | ||
- | NOTE: These should be included even if the maven-bundle-plugin reports warnings that they' | + | |
- | + | ||
- | == Version Errors == | + | |
- | + | ||
- | For a currently unknown reason, Maven sometimes adds a " | + | |
- | + | ||
- | com.searchtechnologies.aspire.services.AspireException: | + | |
- | at com.searchtechnologies.aspire.application.ComponentBundleInfo.load(ComponentBundleInfo.java: | + | |
- | at com.searchtechnologies.aspire.application.RepositoryManager.load(RepositoryManager.java: | + | |
- | at com.searchtechnologies.aspire.application.AspireApplicationImpl.loadFactoryBundle(AspireApplicationImpl.java: | + | |
- | at com.searchtechnologies.aspire.application.ComponentManagerImpl.registerComponents(ComponentManagerImpl.java: | + | |
- | . | + | |
- | . | + | |
- | at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java: | + | |
- | at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java: | + | |
- | ''' | + | |
- | + | ||
- | at org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java: | + | |
- | at org.apache.felix.framework.Felix.startBundle(Felix.java: | + | |
- | at org.apache.felix.framework.BundleImpl.start(BundleImpl.java: | + | |
- | at org.apache.felix.framework.BundleImpl.start(BundleImpl.java: | + | |
- | at com.searchtechnologies.aspire.application.ComponentBundleInfo.load(ComponentBundleInfo.java: | + | |
- | ... 42 more | + | |
- | + | ||
- | If you examine the bundle (using winrar or similar)and look in the '' | + | |
- | + | ||
- | Import-Package: | + | |
- | + | ||
- | Unless the packages were exported with this version, then the import cannot find them. In Aspire we don't add versions to exported packages, so the easiest way to work around this issue is to suppress the addition of the version number to the import. This can be done by specifying the import in the following manner: | + | |
- | + | ||
- | < | + | |
- | groovy.lang'''; | + | |
- | + | ||
- | == Other Hints and Tricks | + | |
If you make changes to the framework, you'll likely need to re-run "mvn install" | If you make changes to the framework, you'll likely need to re-run "mvn install" | ||
Line 208: | Line 151: | ||
You can find more information here: | You can find more information here: | ||
- | : http:// | + | http:// |
Also, check out the BND documentation page for additional options (Maven bundle plugin is based on BND, so the syntax for specifying imports/ | Also, check out the BND documentation page for additional options (Maven bundle plugin is based on BND, so the syntax for specifying imports/ | ||
- | : http:// | + | http:// |
Specifically, | Specifically, | ||
- | : http:// | + | http:// |
- | == APPENDIX: | + | ===== APPENDIX: |
Note that you will need to import these with & | Note that you will need to import these with & | ||
- | <pre> | + | <code> |
javax.accessibility, | javax.accessibility, | ||
javax.activation, | javax.activation, | ||
Line 387: | Line 330: | ||
org.xml.sax.ext, | org.xml.sax.ext, | ||
org.xml.sax.helpers, | org.xml.sax.helpers, | ||
- | </pre> | + | </code> |
- | + | ||
- | [[Category: | + |
giraffplus/3rdparty.1374148602.txt.gz · Last modified: 2013-07-18 11:56 by filippo