Does anyone know of a tool for detecting dead code in a Java EE project?
I've looked into lots of tools that do this well for pure Java projects, but nothing seems to really handle projects which include JSPs and Javascript files as well. For example, detecting that a Java method is in use because it's being called from a JSP, or detecting that some JSP file that previously was used as an AJAX request is no longer called from any Javascript.
Thanks.