1

Could anyone help me please. when I try to Run my java ee application in apache tomcat, the browser show this...enter image description here

2
  • Is it possible to provide sample project for investigation? Commented 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. Commented Apr 15, 2021 at 15:00

2 Answers 2

1

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.

Sign up to request clarification or add additional context in comments.

Comments

0

Thank you. I have not written the application context name in my URL(Edit configuration->Deployment->Application context).enter image description here

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.