I am attempting to debug a server which uses Spring Web 4.1.6. No matter what URL I direct requests to, I get a 404, The Request Resource is not available.
No output gets written to the console when running in Tomcat on Eclipse. I have no idea where to put a breakpoint to understand what is happening and can think of no approach to debugging.
I note that when I send a request to the admin port, I do see "Invalid command '' received" so the server is not completely inert but attempts to go to a URL on the http port configured for Eclipse show no results. I assume this means something like Spring Web is "absorbing" all http requests.
EDIT: I note that even a Tomcat server without any war file will give 404s and there is no log output whereas requests sent to the admin port do result in output. So the question maybe is, how do you determine why Tomcat is returning 404 for a URL that should work?
EDIT (2): It was pointed out to me that indeed Tomcat does log this information but in a separate file. I see in logs directory under .metadata (in Eclipse) multiple local_access_log..txt files. This I would guess is the default for Eclipse but that Tomcat could also be configured to output to the console. So this was not so mysterious after all.