This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
import java.lang.reflect.Method; | |
import org.apache.commons.io.IOUtils; | |
/** | |
* Large Java systems often include a plugin framework that allows a developer to | |
* contribute new functionality by packaging custom code as a JAR that is installed and run | |
* inside the primary system. The code for a plugin often exists in its own dedicated codebase, | |
* referencing the primary codebase as a dependency. |