Customer Portal

Comments 1

  • Avatar
    jurban
    0
    Comment actions Permalink
    Hi,
    Clover engine is extensible by plugins and it automatically loads them from the directory specified in Plugins.init(). The plugins contain the code of components, connections etc, but also a mapping from their "names" to their classes (i.e. DATA_READER -> org.jetel.component.DataReader).

    So if you create Clover graphs purely from Java code and create all elements of the graph manually (i.e. new SimpleCopy(...)), then you only need the plugins' classes in the classpath and you don't really need to set the plugin path. If you want to create graphs from XML or via factories (i.e. ComponentFactory class) then you must specify the plugin path.

    Jaro

Please sign in to leave a comment.