免费的 JSP 混淆器?
我想报告 Eclipse WTP 项目的错误,该错误发生在我公司项目的 JSP 上,但由于法律原因我不想附加原始 jsp。
有没有一种方法/免费实用程序可以轻松混淆我的 jsp 代码?
I want to report a bug for the Eclipse WTP project which occurs on a JSP of my company's project but I don't want to attach the original jsp due to legal reasons.
Is there a way/free utility to obfuscate my jsp code easily?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你的问题体现了一种自相矛盾的说法。要么您希望他们找到错误,这意味着他们可以理解源代码,要么您想隐藏源代码,在这种情况下,您会阻碍故障报告过程。
您应该做的是构建一个并行案例,以尽可能最小的方式展示该错误,并且不会泄露您宝贵的秘密。如果您做不到这一点,则证明该错误存在于您的代码中。无论如何,这是迄今为止最有可能的可能性。
Your question embodies a contradiction in terms. Either you want them to find the bug, which implies that they can understand the source code, or you want to conceal the source code, in which case you are impeding the fault report process.
What you should be doing is constructing a parallel case that exhibits the bug in the most minimal fashion possible and that doesn't give away your precious secrets. And if you can't do that, it is evidence that the bug is in your code. Which is by far the most likely possibility anyway.
有免费的jsp混淆器: yGuard
和一个 Eclipse 插件: obfuscate4e
There is free jsp obfuscator: yGuard
and an eclipse plugin : obfuscate4e
尝试一下 ProGuard,它是一个免费的 Java 类文件压缩器和混淆器。它可以使用无意义的名称更改代码中的名称。
Try the ProGuard, its a free Java class file shrinker and obfuscator. It can change the names in your code using meaningless ones.
根据缺乏答案,我必须意识到似乎没有混淆器。
According to lacking answers I have to realize that there seems to be no obfuscator.