Link to home
Start Free TrialLog in
Avatar of rospcc
rospcc

asked on

Can Obfuscated java classes be fully supported by JSP?

Hi,

If I've obfuscated my java classes into .JAR file, Can the JSP still be able to communicate easily with the Java classes/Beans?

Which user friendly Obuscator software would you recommend?
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Any names used by your jsp will need to be marked as not to be obfuscated.
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rospcc
rospcc

ASKER

Thanks for the reply, will look through all our suggestions.
objects, are you saying that those classes that will be used by JSP, cannot be obfuscated?
No, I'm saying any class/method names used by your jsp pages need to be excluded from the obfuscation process.

eg. if you had:

<%

   MyClass c = new MyClass();
   c.doSomething();
%>

then MyClass and doSomething would need to be left as is.