我从浏览器中点击了网址http://myMachine/webApp1/customer.do?method=getCustDetail"
。我在服务器端接到电话,但是一旦我从服务器返回,我在 mozilla 控制台中收到以下错误,即
"NetworkError: 503 Service Unavailable - `http://myMachine/webApp1/customer.do?method=getCustDetail"`
这是我的服务器代码
public String getCustDetail(HttpServletRequest req) {
req.getSession().removeAttribute("custId");
return null;
}
当我能够使用上面的 url 访问服务器时,我没有得到为什么我得到 NetworkError: 503 Service Unavailable
错误