设置时遇到问题 tomcat
Trouble Setting up tomcat
所以,我正在自学 java 并且我正在按照 Java 中的安装说明进行操作,以了解 Dummies 第 3 版。我正在尝试设置我的计算机,以便我可以 运行 servlet。我遵循了所有说明,在我 运行 启动文件之后,tomcat 设置似乎从我的命令提示符
中的这一行开始工作
Server Startup in 547 ms
however when i type in the following url from the book to test it
http://localhost:8080/servlets-examples/index.html
我收到这个错误
HTTP Status 404 - /servlets-examples/index.html
type Status report
message /servlets-examples/index.html
description The requested resource is not available.
Apache Tomcat/8.0.23
我还应该补充一点,我尝试多次更改 server.xml 文件中的服务器端口并将其输入 url 而不是 8080,但仍然收到相同的消息。我在 chrome 和 firefox 中试过这个,但它在任何一个上都不起作用。有没有人经历过这个并且知道如何解决它?可能是我的计算机安全受到阻碍,或者 url 已更改,还是我没有正确设置它?
你能post你的code/configuration吗?可能是 xml 文件某处有误。只是改变你的端口,应该没有关系,除非其他东西正在使用那个端口,这总是值得检查
404 表示服务器正常工作,但未找到文档 /servlets-examples/index.html
。
只需检查 URL http://localhost:8080(它应该显示默认介绍页面)
所以,我正在自学 java 并且我正在按照 Java 中的安装说明进行操作,以了解 Dummies 第 3 版。我正在尝试设置我的计算机,以便我可以 运行 servlet。我遵循了所有说明,在我 运行 启动文件之后,tomcat 设置似乎从我的命令提示符
中的这一行开始工作Server Startup in 547 ms however when i type in the following url from the book to test it http://localhost:8080/servlets-examples/index.html
我收到这个错误
HTTP Status 404 - /servlets-examples/index.html
type Status report
message /servlets-examples/index.html
description The requested resource is not available.
Apache Tomcat/8.0.23
我还应该补充一点,我尝试多次更改 server.xml 文件中的服务器端口并将其输入 url 而不是 8080,但仍然收到相同的消息。我在 chrome 和 firefox 中试过这个,但它在任何一个上都不起作用。有没有人经历过这个并且知道如何解决它?可能是我的计算机安全受到阻碍,或者 url 已更改,还是我没有正确设置它?
你能post你的code/configuration吗?可能是 xml 文件某处有误。只是改变你的端口,应该没有关系,除非其他东西正在使用那个端口,这总是值得检查
404 表示服务器正常工作,但未找到文档 /servlets-examples/index.html
。
只需检查 URL http://localhost:8080(它应该显示默认介绍页面)