I'm using Eclipse to do a text search on a Java Application. The list of references / search terms are stored procedures (SP). My goal is to see if these SP are being called in the Java App. I have 50 items, I was hoping if there's a better way of doing this because at the moment my workflow is:
- select word from List, then push Ctrl-H (Open Text Search)
- Click enter
- Record the resultset if any
Is there any way to do this more efficiently? I'm pretty sure I will doing this in the near future again. I've considered using Java, write a small code that reads through the App in the filesystem, looking at the .java files recursively. But I doubt if that will be actually fast enough as the App has many files.