我正在使用我的Bukkit插件,我有一个很好的库,我在其中使用。不幸的是,我被告知没有找到图书馆的课程。
org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: zone/luaq/lib/utils/command/LCommandExecutor
总结一下,我的库只是为了让我的生活更轻松,在处理Bukkit API时。我正在重新设计记分板,命令等等。但是,当我尝试在我的插件上使用它时,它根本找不到类,我的IDE(IntelliJ)也告诉我没有找到的类,即使它找到了它们编程(只有当我使用库本身而不是库jar文件时才会出现此错误。)
在代码中,这就是我所拥有的一切。
LCommandUtils.register(this, "broadcast", new Broadcast());
LCommandUtils.register(this, "heal", new Heal(), true);
LCommandUtils.register(this, "feed", new Feed(), true);
LCommandUtils.register(this, "fly", new Fly(), true);
LCommandUtils.register(this, "flyspeed", new FlySpeed(), true);
即使库插件在服务器上正常加载,也似乎无法找到该类。如果有人能提供帮助,那就太棒了。
提前致谢, Luaq