Difference between revisions of "Using External JARs"

From AgileApps Support Wiki
imported>Aeric
m (Text replace - 'Setup > ' to 'Settings > ')
 
imported>Aeric
Line 11: Line 11:


To use classes defined in those JARS:
To use classes defined in those JARS:
:* In your Java code (class methods and data policies), import the classes contained in the JAR files.<br/>For example:
:* In your Java methods, import the classes contained in the JAR files.<br/>For example:
::<syntaxhighlight lang="java" enclose="div">
::<syntaxhighlight lang="java" enclose="div">
import com.examples.utils.*;
import com.examples.utils.*;
Line 17: Line 17:


{{TIP|Debugging can be done using Eclipse Remote debug}}
{{TIP|Debugging can be done using Eclipse Remote debug}}
<noinclude>
<noinclude>
[[Category:Development]]
[[Category:Development]]
</noinclude>
</noinclude>

Revision as of 19:50, 14 January 2013

Service Providers can configure the platform to make additional JAR files available to developers.

To configure additional JARs:

  1. Copy the jar into ../tomcat/lib
  2. Configure the platform
    1. Login as admin
    2. Settings > Service Provider Settings > Service Configuration
    3. provide the name of the jar in Libraries supported in Java Code text field and Save.
    Learn more: Service_Provider_Settings#Develop_Configuration
  3. Restart tomcat.

To use classes defined in those JARS:

  • In your Java methods, import the classes contained in the JAR files.
    For example:
import com.examples.utils.*;

Thumbsup.gif

Tip: Debugging can be done using Eclipse Remote debug