I need to make some change to a Java-EE Struts2 Web Application written by other developers.
Since I don’t know exactly how it works, I’d like to map all the actions and methods that are called on each request, to better understand the web application workflow before altering it.
Is there a way to achieve this goal ?
As i got from your question you may try using like this.
If you have found the action class and the
execute()then this could be easy for you, run the application in debug mode and start debugging from the start ofexecute()function. pressF6to debug it line by line and if you see any new function then to go inside the function pressF5or manually go to the function place new break point there and then pressF6to go to that function.Hope so it will help you