https://github.com/magiclu550/plugin4j
The Plugin loading framework
https://github.com/magiclu550/plugin4j
Last synced: 7 months ago
JSON representation
The Plugin loading framework
- Host: GitHub
- URL: https://github.com/magiclu550/plugin4j
- Owner: MagicLu550
- Created: 2019-09-08T15:49:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-12T15:15:02.000Z (over 6 years ago)
- Last Synced: 2024-12-27T15:42:57.370Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plugin4j
##### Plugin4j提供了简便快捷的插件加载方案
```java
public class Test{
public void test(){
PluginConfig config = new PluginConfig();
config.setBase(Plugin.class);
config.setFile("./plugins");
IPluginClassLoader loader = new PluginClassLoader();
loader.setConfig(config);
List datas = loader.loadPlugins();
}
}
```