Skip to content

Execute JAR

The Execute JAR feature allows administrators to create their own Java classes, package them into a JAR file, and execute them from within OpenKM.

Requirements:

  • The class must implement a public static void main(String[] args) method.
package com.openkm;
public class CronTabTest {
public static void main(String[] args) {
// Some stuff here
}
}