12345678910111213141516171819202122232425262728293031323334353637383940414243[info] [gradle-server] Gradle Server started, listening on 63127[info] Gradle client connected to serve...
最近业务需要解析excel,使用apache poi库在vscode中一切顺利。打包为jar丢到生产环境时报错:
1java.io.IOException: Your InputStream was neither an OLE2 stream, nor an OOXML stream or you haven't provide the poi-...
在写插件的时候不可避免的需要调用一些外部库,我们需要把依赖打包到jar中,当使用的依赖过多时体积将非常臃肿。通过 Loading Dependencies from External Sources in Spigot这篇文章和阅读luckperms的解决方法,花了半个通宵捣鼓出了一种可行的方案
最初的解决方案是通过ClassLoader的addURL动态的...