From: Decebal Suiu Date: Fri, 5 Sep 2014 12:18:03 +0000 (+0300) Subject: Update README.md X-Git-Tag: release-0.10.0~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=07d115c456266ba5c0a83e393927e4264c2ff160;p=pf4j.git Update README.md --- diff --git a/README.md b/README.md index 5cc2db2..2c37c86 100644 --- a/README.md +++ b/README.md @@ -71,8 +71,7 @@ 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 loads and starts all active(resolved) plugins. Each available plugin is loaded using a different java class loader, **PluginClassLoader**. -The **PluginClassLoader** contains only classes found in **PluginClasspath** (default _classes_ and _lib_ folders) of plugin and runtime classes and libraries of the required/dependent plugins. -This class loader is a _Parent Last ClassLoader_ - it loads the classes from the plugin's jars before delegating to the parent class loader. +The **PluginClassLoader** contains only classes found in **PluginClasspath** (default _classes_ and _lib_ folders) of plugin and runtime classes and libraries of the required/dependent plugins. This class loader is a _Parent Last ClassLoader_ - it loads the classes from the plugin's jars before delegating to the parent class loader. The plugins are stored in a folder. You can specify the plugins folder in the constructor of DefaultPluginManager. If the plugins folder is not specified than the location is returned by `System.getProperty("pf4j.pluginsDir", "plugins")`.