diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2012-10-11 15:49:53 +0300 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2012-10-11 15:49:53 +0300 |
commit | ef96cc59fda8d665c1065bc1b7a18b5116703865 (patch) | |
tree | bd3ef2c6c60d71edb08d1730a9bbf261a15d80cd /README.md | |
parent | 2ec672068d56db6a3a20e4ba1f834c079df5a27e (diff) | |
download | pf4j-ef96cc59fda8d665c1065bc1b7a18b5116703865.tar.gz pf4j-ef96cc59fda8d665c1065bc1b7a18b5116703865.zip |
update readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -53,7 +53,9 @@ It's very simple to add pf4j in your application: } In above code, I created a **DefaultPluginManager** (it's the default implementation for -**PluginManager** interface) that load and start all active(resolved) plugins. +**PluginManager** interface) that load and start all active(resolved) plugins. +The available plugins are loaded using a **PluginClassLoader**. +The **PluginClassLoader** contains only classes found in _classes_ and _lib_ folders of plugin and runtime classes and libraries of plugins that are required plugin. The plugins are stored in a folder. You can specify the plugins folder in constructor of DefaultPluginManager. If the plugins folder is not specified than the location is returned by `System.getProperty("pf4j.pluginsDir", "plugins")`. |