We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如果是一个经过xjar加密后的jar包,被其它项目依赖后,那这个新项目该怎么解密启动呢?
The text was updated successfully, but these errors were encountered:
使用XJarClassLoader去加载它,具体代码你可以去看xjar源码里面的io.xjar.jar.XJarLauncher#launch()方法是怎么加载的
Sorry, something went wrong.
使用XJarClassLoader去加载它,具体代码你可以查看xjar源码里面的io.xjar.jar.XJarLauncher#launch()方法是怎么加载的
需要做什么操作呢? 改项目启动命令可以实现吗? 还是要改源码?
xjar是用于给jar包加密的,也就是加密解密都需要xjar才行。
如果是独立包,然后需要加密提供给第三方使用,这种情况建议将独立的包封装为微服务,提供远程调用接口比较合适。
不然的话就需要为第三方包适配xjar的classloader, 而且密钥泄漏了的话,那么你源码也能被解密出来了。
No branches or pull requests
如果是一个经过xjar加密后的jar包,被其它项目依赖后,那这个新项目该怎么解密启动呢?
The text was updated successfully, but these errors were encountered: