I am developing GWT API. I am trying to find a way for obfuscation to my java code(API). But, GWT works only with source code. But I dont want my algorithms does not understand from developers who use my GWT API. Is there any way to obfuscate my java codes. Another isue is licencing. Is there any way, developing client licence for GWT.
Asked
Active
Viewed 622 times
1
-
1Are you trying to obfuscate the generated Javascript? Or what? – Louis Wasserman Jul 02 '12 at 19:28
-
GWT client code is obfuscated to some extend already. It's alomost impossible to understand your logic from the generated Javascript. May be you can give it a try by doing reverse engineering generated Javascript. – Sree Jul 03 '12 at 06:54
1 Answers
6
The GWT Compiler only works on source code because we need the extra on information that is inside java files compared to class files.
So if you want to develop an API for GWT you can only do this by shipping open code to your customers.

Daniel Kurka
- 7,973
- 2
- 24
- 43