Tomcat Server

Tomcat Server

Cheems Lv3

很多java web新手都遇到的错误:

tomcat报错:

The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.

打开https://localhost:8080依旧如此

解决办法:

  • 将服务器从eclipse的配置中删掉,重新添加新的服务器 双击.
  • server locations 可选,勾选中间一个.

如果错误依旧存在 点第二步

若把jsp 文件 放到 WebContent 下面的文件夹里面 。

你的访问路径应该为: localhost:8080/你的项目名称/你的放jsp的文件夹/jsp文件名称.jsp

例子: localhost:8080/JSTLTest/jsp/JSTLTest.jsp

解释: 第一个JSTLTest为项目名称,jsp为WebContent下的文件夹,专门存放jsp文件的.第二个JSTLTest为文件名.需要加后缀。

注意: WEB-INF文件下的jsp文件是不能直接访问到的.因此要把jsp文件挪到WebContent文件下。

返回csdn原文
  • Title: Tomcat Server
  • Author: Cheems
  • Created at : 2017-11-01 18:17:39
  • Updated at : 2023-05-02 18:10:18
  • Link: https://processmonitor.github.io/2017/11/01/Tomcat-Server/
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments
On this page
Tomcat Server