Could anyone help me please. when I try to Run my java ee application in apache tomcat, the browser show this...
- Is it possible to provide sample project for investigation?y.bedrov– y.bedrov2021-04-15 14:51:27 +00:00Commented Apr 15, 2021 at 14:51
- Please see How to Ask. How can we tell you anything from just seeing this? Also please don't upload text as image.Olaf Kock– Olaf Kock2021-04-15 15:00:42 +00:00Commented Apr 15, 2021 at 15:00
Add a comment |
2 Answers
Being the requested URL http://localhost:8080/controller?action=main, it is possible that you missed to include the context name in the URL, like this:
http://localhost:8080/context/controller?action=main
Make sure that your application is not being deployed to the default context, then check what is its name, and write the complete URL in your web browser.
If that is not the cause, make sure also that your application has been well deployed when running Tomcat: Read the console output and check for errors.
