2

我是 tomcat 的新手,想创建一个 java webapp。我已经下载并安装了 XAMPP Windows 1.8.0。有一个文件夹C:\xampp\tomcat\webapps\examples,其中有一个文件test.jsp,当我通过以下 URL 访问它时,它可以工作。

http://localhost/examples/test.jsp

我在 webapps 目录“C:\xampp\tomcat\webapps\myapplication”中创建了另一个文件夹,其中包含相同的文件 test.jsp,但是当我通过以下 URL 访问它时

http://localhost/myapplication/test.jsp

出现以下错误:

Object not found!

The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.

If you think this is a server error, please contact the webmaster.

Error 404

localhost
Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4

是否需要进行一些配置才能将新文件夹添加到 tomcat?

4

2 回答 2

0

我也有同样的问题,终于找到了它发生的原因

我之前在运行 Xampp Apache 和 tomcat。之后我停止了该服务(这样认为,但有些不好)

但它产生了影响。这就是它无法加载这些的原因。

我刚刚重新启动了系统。我可以看到 tomcat 管理器页面,一切正常。它很简单。

重新启动!并且只启动tomcat服务

于 2015-10-01T20:38:25.393 回答
0

localhost 是 apache web 服务器的主机,您需要输入这种类型的地址:-

localhost:8080/examples/test.jsp

Apache 在http://localhost/上 运行,Tomcat 在http://localhost:8080/上运行

于 2016-12-24T03:22:30.753 回答