开发者

Does jruby compile down to the same bytecode as a java app? can it be obfuscated then?

开发者 https://www.devze.com 2023-01-19 02:49 出处:网络
If jruby can run on tomcat, I\'m guessing it compil开发者_运维百科es down to the same bytecode that a regular java web app would?

If jruby can run on tomcat, I'm guessing it compil开发者_运维百科es down to the same bytecode that a regular java web app would?

Does this mean I can use existing obfuscation tools that exist in the java market and use it on a jruby (ruby on rails) web app?


Yes, it can compile down to java bytecode (AOT-Compile). Which means you can use an obfuscation tool.

However you can obviously obfuscate only non-public members of your classes, so the potential for obfuscation in a web-application is usually not particulary high.

0

精彩评论

暂无评论...
验证码 换一张
取 消