我在Spring MVC中有一个场景,我必须在handleRequest方法中显式抛出一个Exception。
对于例如。
public class AdminController implements Controller {
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
// for some request parameter this is run. For Eg. reqParam=xyz
undeployTables();
}
public void undeployTables() throws Exception {
throw new Exception("Undeploy Exception");
}
现在假设在web.xml中配置了spring servlet和url映射,当我尝试通过url http://localhost:8080/server/admin?reqParam=xyz
访问servlet时,我在页面上得到了正确的错误。 java.lang.Exception: Undeploy failed....
但是当我尝试通过HTTPClient访问代码时,即通过java代码,客户端中的响应无法捕获此异常,只有我得到的是HTTP 401内部错误作为响应对象。但是我会喜欢在客户端中拥有一个Exception对象。
代码是:
HttpPost httppost = new HttpPost(url.toURI());
httpclient.getParams().setParameter(CoreConnectionPNames.SO_TIMEOUT, timeout);
logger.info("executing request " + httppost.getURI()); //$NON-NLS-1$
// Create a response handler
HttpResponse response = httpclient.execute(httppost);// expect exception to be thrown here
statusCode = response.getStatusLine().getStatusCode();
您能告诉我应该在哪里进行更改,以便可以捕获客户的例外情况。
我可以谷歌但无法找到合适的答案。
答案 0 :(得分:0)
不能通过HTTP抛出异常。你需要做的是:
在服务器端,处理异常并确保您的HTTP响应具有适当的statusCode和/或响应标头/正文。
在客户端,将该响应转换为您想要的异常。
您应该调查HttpClient为异常处理提供的接口。
我对这个问题的回答可能会对服务器端有所帮助: