JSP提示The requested resource is not available.

目测原因有以下几种:

1: <form method="post" action="">  action的地址有问题

解决方案:

那是根据web.xml配置文件来的。如果配置文件里的<url-pattern>/login</url-pattern>,那么action=“login”,如果<url-pattern>/项目名/login</url-pattern>,那么action=“/项目名/login”。

2:web.xml文件配置有问题

时间: 2025-01-20 07:40:55

JSP提示The requested resource is not available.的相关文章

As.net WebAPI CORS, 开启跨源访问,解决错误No &#39;Access-Control-Allow-Origin&#39; header is present on the requested resource

默认情况下ajax请求是有同源策略,限制了不同域请求的响应. 例子:http://localhost:23160/HtmlPage.html 请求不同源API http://localhost:22852/api/values, What is "Same Origin"? Two URLs have the same origin if they have identical schemes, hosts, and ports. (RFC 6454) These two URLs h

No &#39;Access-Control-Allow-Origin&#39; header is present on the requested resource

一.现象 ajax调用请求后,前端提示收到这个错误 No 'Access-Control-Allow-Origin' header is present on the requested resource 二.原因 这是一个典型的跨域请求失败的例子. 三.解决 服务器的响应消息中增加头字段即可. rsp.addHeader("Access-Control-Allow-Origin", "*"); 四.扩展 更多的关于CORS的内容可以学习这篇文章: https://

【转】The requested resource (/) is not available

HTTP Status 404(The requested resource is not available)异常主要是路径错误或拼写错误造成的,请按以下步骤逐一排查: 1.未部署Web应用 2.URL输入错误 a.查看URL的IP地址和端口号是否书写正确. b.查看上下文路径是否正确 Project--------Properties------MyElipse-----Web----- Web Context-root检查这个路径名称是否书写正确. c.检查一下文件名称是否书写正确. 3.

js跨域访问,No &#39;Access-Control-Allow-Origin&#39; header is present on the requested resource

js跨域访问提示错误:XMLHttpRequest cannot load http://...... No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. 解决方法: 1.如果请求的url是aspx页面,则需要在aspx页面中添加代码:Response.AddHeader("Access-Contro

Servlet中The requested resource is not available错误

自己为了测试servlet,用MyEclipse2015写了一个简单的登录程序. 1.登录页面index.jsp. 1 <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 <% 3 String lUserName = (String)session.getAttribute("iUserName"); 4 %>

The requested resource is not available错误

"HTTP Status 404(The requested resource is not available)"示例 HTTP Status 404(The requested resource is not available)异常主要是路径错误或拼写错误造成的,请按以下步骤逐一排查: 1.未部署Web应用 2.URL输入错误 a.查看URL的IP地址和端口号是否书写正确. b.查看上下文路径是否正确 Project--------Properties------MyElipse

HTTP Status 404(The requested resource is not available)异常解决

"HTTP Status 404(The requested resource is not available)"示例 HTTP Status 404(The requested resource is not available)异常主要是路径错误或拼写错误造成的,请按以下步骤逐一排查: 1.未部署Web应用 2.URL输入错误 a.查看URL的IP地址和端口号是否书写正确. b.查看上下文路径是否正确 Project--------Properties------MyElipse

The requested resource is not available...

运行tomcat 提示如下错误: The requested resource () is not available的解决方案 出现这个问题,接口肯定是没问题了.问题可能有两个: 1.文件设置无法访问: 2.缺少架包: 解决办法:1.只需要修改Tomcat服务器中web.xml <init-param>   <param-name>listings</param-name> <param-value>false(将其该为true)</param-va

The requested resource is not available的解决办法

以"HTTP Status 404(The requested resource is not available)"示例 HTTP Status 404(The requested resource is not available)异常主要是路径错误或拼写错误造成的,请按以下步骤逐一排查: 1.未部署Web应用 2.URL输入错误 a.查看URL的IP地址和端口号是否书写正确. b.查看上下文路径是否正确 Project--------Properties------MyElips