Catalyst Java Function How to include external jars?

Catalyst Java Function How to include external jars?

As of now, you can place the jar files under the lib folder inside your function’s directory and include the jar filenames in .classpath file under your function’s directory. 
    • Related Articles

    • Credit Calculation Catalyst Function

      The 1500,1000 refers to the number of requests that can be executed concurrently.  On an average, 900 - 200 parallel invocations per minute will be the maximum number of function invocations depending on the execution time of 1 - 5s respectively. ...
    • Code sample to upload files in File Store using Java

      import java.io.File; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import ...
    • Catalyst Function Execution and Performance

      You will only face higher execution time for function when it is called after a certain period of inactivity. If invoked continuously, you will not face the slowness. You can check the access logs for your function and check the average execution ...
    • Catalyst Functions Class not found error

      Kindly do check on the following points.  Kindly make sure you have uploaded your Java function with all the complied class files.  If the class files are present, then kindly make sure you have provided the relative path of the main class properly ...
    • Reading private keys in Catalyst

      You can read it as a file in your Catalyst function and use it accordingly.