- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从 servlet 重定向到 HTML 页面。为了进行调试,我在 servlet、HTML 页面和 web.xml 中使用了最少量的代码
我可以在浏览器中加载 HTML 页面,无需 servlet。但是,当我尝试从 servlet 重定向到同一页面时,只呈现一个空白页面。没有显示错误。以下是相关代码。
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>name</display-name>
<listener>
<listener-class>net.semandex.salsa.webapp.SalsaWebApp</listener-class>
</listener>
<servlet>
<description>
</description>
<display-name>SalsaValidationServlet</display-name>
<servlet-name>SalsaValidationServlet</servlet-name>
<servlet-class>net.semandex.salsa.validationServlets.SalsaValidationServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>SalsaValidationServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>20</session-timeout>
</session-config>
</web-app>
Servlet
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class SalsaValidationServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String path = request.getPathInfo();
if(path == null) return;
String []p = path.split("/");
if( !path.endsWith("licenseValidation.html") )
//request.getRequestDispatcher("/auth/licenseValidation.html").forward(request, response);
response.sendRedirect( request.getContextPath() + "/auth/licenseValidation.html" );
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
doGet(req, resp);
}
}
HTML Page - licenseValidation.html
<html>
<head>
<title>License upload page</title>
</head>
<body>
<form>
<input type="text" name="name"/><br>
<input type="text" name="group"/>
<input type="text" name="pass"/>
<input type="submit" value="submit">
</form>
</body>
</html>
为什么此代码加载空白页面而不是 HTML 页面?确实会发生重定向,但重定向到空白页面。浏览器中新 URL 的状态代码为 200,但调试器中的响应为空。
Edit:
问题是 BalusC 所说的“/*”URL 模式。在他的另一个答案中找到了更多有用的信息。 Difference between / and /* in servlet mapping url pattern
最佳答案
您使用的请求 URL 没有任何关联的额外路径信息。因此,request.getPathInfo()
返回 null
并且不会触发重定向。
如果你想重定向到任何页面,即使没有额外的路径信息,你也需要删除空检查。只需重定向它:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//String path = request.getPathInfo();
//if(path == null) return;
//String []p = path.split("/");
//if( !path.endsWith("licenseValidation.html") )
//request.getRequestDispatcher("/auth/licenseValidation.html").forward(request, response);
response.sendRedirect( request.getContextPath() + "/auth/licenseValidation.html" );
}
request.getPathInfo
如果没有额外的路径信息,则返回 null:getPathInfo
假设您已将 servlet-mapping
定义为:
<servlet-mapping>
<servlet-name>SalsaValidationServlet</servlet-name>
<url-pattern>/salsadb/*</url-pattern>
</servlet-mapping>
您正在向此 URL 发送请求:
http://localhost:8080/<appName>/salsadb/some_text
这次pathInfo
不会为空;其值为 /some_text
,这是与 URL 关联的额外路径信息。
编辑:
SalsaValidationServlet
被映射来为应用程序的所有请求提供服务。第一个请求是这样的:
http://localhost:8080/salsadb/
调用 SalsaValidationServlet
的 doGet
方法,pathInfo
的值为 /
。它将请求重定向到 /auth/licenseValidation.html
。
现在浏览器将向重定向 URL 发送一个新请求,在本例中为:/auth/licenseValidation.html
。再次调用 SalsaValidationServlet
的 doGet
方法,因为它使用此 /*
映射:对应用程序的任何请求执行。这次pathInfo的值为/licenseValidation.html
,它不满足这个if
条件:
if( !path.endsWith("licenseValidation.html") )
因此,这次没有触发重定向。
我认为这可以澄清问题。如果可能,请更改 servlet-mapping
以仅向应用程序提供所需的请求。
关于Java : Redirect from Servlet leads to a blank page,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34412585/
我是一名优秀的程序员,十分优秀!