ProGuard : Obfuscated jar is not working but un-obfuscated jar is working
问题 I have one project which is part of another one. I am using maven build process to make project's jar. I used ProGuard to obfuscate it. I have some controllers which handles UI requests. Q. My problem is un-obfuscated jar is working. All controllers are getting hit, but obfuscated jar is not working (none controller gets hit). Whats the issue with obfuscation ? My Servlet.XML : <context:component-scan base-package="myPackage.controllers" /> <mvc:annotation-driven /> Sample controller code :