首页 > 代码库 > HTTP 302 Moved Temporarily Struts

HTTP 302 Moved Temporarily Struts

  1. Request Method:
    POST
  2. Status Code:
    302 Moved Temporarily


  1. Content-Length:
    0
  2. Date:
    Sun, 07 Dec 2014 15:23:19 GMT
  3. Location:
    http://inspiron:8080/GrandFieldRescue/login.html
  4. Server:
    Apache-Coyote/1.1


在做的一个SSH+Ajax项目,遇到了HTTP 302 的错误。可是,在MyEclipse的控制台那里没有错误信息输出。

接着,只能上网,百度、谷歌了好几遍,都没有找到相似的情形。

后来,只能慢慢的分析:


<!DOCTYPE html>
<html>
  <head>
    <title>MyHtml.html</title>
	
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=UTF-8">
    
    <!--<link rel="stylesheet" type="text/css" href=http://www.mamicode.com/"./styles.css">-->>


全部填了 1 之后,就出现HTTP 302错误了。

而后,将action里对应的team的属性的类型都改为String,就可以通过了。

也就是说,Struts会自动地将框里填的字符串转换为相应的类型;

若转换失败,浏览器会看到HTTP 302 Moved Temporarily,后台卡死。

HTTP 302 Moved Temporarily Struts