Is it possible to manage logs through Obfuscation

2019-09-09 00:40发布

I obfuscated a java web application and I ran into some trouble as below:

  1. I have alot of uresolved external classes even though I have included in the ant build xml the external jar this way:

    <externalclasses>
      <pathelement location="${tomcatpath}/lib/"/>
      <pathelement location="${webinfdir}/lib/"/>
    </externalclasses
    
  2. How can I manage logs to understand anything?

  3. Can I also obfuscate the jsp files?

标签: java yguard
1条回答
The star\"
2楼-- · 2019-09-09 01:41

I found out the following:

  1. The jars must be put individually instead of their directories
  2. The jsps and any configuration file must be put in the jar
  3. The logs are to be recognized through yGuard GUI
查看更多
登录 后发表回答