配置不好是什么问题?

来源:1-4 搭建JAVA WEB开发环境

慕仰5167399

2018-08-03 08:42

Access Error: 404 -- Not Found

Cannot locate document: /


写回答 关注

2回答

  • 慕UI6434417
    2019-12-06 11:55:13

    原因是8080端口被占用(可能是其他软件,比如NI公司软件,电子专业童鞋一般都装有这类软件)


    解决方法1:


    When I had an error Access Error: 404 -- Not Found I fixed it by doing the following:


    Open command prompt and type "netstat -aon" (without the quotes)

    Search for port 8080 and look at its PID number/code.

    Open Task Manager (CTRL+ALT+DELETE), go to Services tab, and find the service with the exact PID number. Then right click it and stop the process.


    由于我没有在netstat -aon中找到8080 port,所以选择方法2:


    解决方法2:


    记事本打开tomcat安装文件的conf中server.xml,将


    <Connector port="8080" protocol="HTTP/1.1"

                   connectionTimeout="20000"

                   redirectPort="8443" />

    中的8080改为8081,保存,重新启动bin目录下shutdown 然后statup,在地址栏输入http://localhost:8081/

    ————————————————

    版权声明:本文为CSDN博主「故乡的风景」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。

    原文链接:https://blog.csdn.net/WtMaple/article/details/84026905


  • 慕工程4034865
    2018-08-03 14:42:13

    找不到本地文件 ,路径错了,注意大小写之类的

JAVA遇见HTML——JSP篇

Java Web入门级教程JSP,带你轻松的学习JSP基础知识

248279 学习 · 3071 问题

查看课程

相似问题