Raible's Wiki
Raible Designs AppFuseHomepage- Korean - Chinese - Italian - Japanese QuickStart Guide User Guide Tutorials Other ApplicationsStruts ResumeSecurity Example Struts Menu
Set your name in
UserPreferences
Referenced by
JSPWiki v2.2.33
Hide Menu |
This is version 1.
It is not the current version, and thus it cannot be edited. How to add a Library into AppFuseFrom time to time you may need to add a library to AppFuse for your specific application. While this is not terribly difficult to do, there are several steps so it can be easy to miss one. Here is a step-by-step walk through so it will be harder to omit anything.
# # iText PDF Library - http://www.lowagie.com/iText/download.html # itext.version=1.1 itext.dir=${lib.dir}/iText-${itext.version} itext.jar=${itext.dir}/iText.jar
<pathelement location="${itext.jar}"/>If there is more than one .jar it is easist to add the whole directory. <fileset dir="${itext.dir}" includes="*.jar"/>There are a few classpaths to choose from so be sure to add your library entry to the right one. NOTE: Several of the classpaths are included in others. For example the test classpaths extend the compile classpaths, and the service classpaths extend the dao classpaths.
<lib file="${itext.jar}"/>Or if there is more than one .jar... <lib dir="${itext.dir}" includes="*.jar"/> Now your dependancy library is completely added to your AppFuse application!
|