本文整理了Java中com.netflix.zuul.exception.ZuulException.setStatusCode()
方法的一些代码示例,展示了ZuulException.setStatusCode()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZuulException.setStatusCode()
方法的具体详情如下:
包路径:com.netflix.zuul.exception.ZuulException
类名称:ZuulException
方法名:setStatusCode
暂无
代码示例来源:origin: Netflix/zuul
private void verifyOrigin(SessionContext context, HttpRequestMessage request, String restClientName, Origin primaryOrigin) {
if (primaryOrigin == null) {
// If no origin found then add specific error-cause metric tag, and throw an exception with 404 status.
context.set(CommonContextKeys.STATUS_CATGEORY, SUCCESS_LOCAL_NO_ROUTE);
String causeName = "RESTCLIENT_NOTFOUND";
originNotFound(context, causeName);
ZuulException ze = new ZuulException("No origin found for request. name=" + restClientName
+ ", uri=" + request.reconstructURI(), causeName);
ze.setStatusCode(404);
throw ze;
}
}
代码示例来源:origin: Netflix/zuul
String causeMsg = String.valueOf(clientRequest.decoderResult().cause());
final ZuulException ze = new ZuulException(errorMsg, causeMsg, true);
ze.setStatusCode(400);
代码示例来源:origin: Netflix/zuul
private void verifyOrigin(SessionContext context, HttpRequestMessage request, String restClientName, Origin primaryOrigin) {
if (primaryOrigin == null) {
// If no origin found then add specific error-cause metric tag, and throw an exception with 404 status.
context.set(CommonContextKeys.STATUS_CATGEORY, SUCCESS_LOCAL_NO_ROUTE);
String causeName = "RESTCLIENT_NOTFOUND";
originNotFound(context, causeName);
ZuulException ze = new ZuulException("No origin found for request. name=" + restClientName
+ ", uri=" + request.reconstructURI(), causeName);
ze.setStatusCode(404);
throw ze;
}
}
代码示例来源:origin: Netflix/zuul
String causeMsg = String.valueOf(clientRequest.decoderResult().cause());
final ZuulException ze = new ZuulException(errorMsg, causeMsg, true);
ze.setStatusCode(400);
代码示例来源:origin: com.netflix.zuul/zuul-core
private void verifyOrigin(SessionContext context, HttpRequestMessage request, String restClientName, Origin primaryOrigin) {
if (primaryOrigin == null) {
// If no origin found then add specific error-cause metric tag, and throw an exception with 404 status.
context.set(CommonContextKeys.STATUS_CATGEORY, SUCCESS_LOCAL_NO_ROUTE);
String causeName = "RESTCLIENT_NOTFOUND";
originNotFound(context, causeName);
ZuulException ze = new ZuulException("No origin found for request. name=" + restClientName
+ ", uri=" + request.reconstructURI(), causeName);
ze.setStatusCode(404);
throw ze;
}
}
代码示例来源:origin: com.netflix.zuul/zuul-core
clientRequest = null;
final ZuulException ze = new ZuulException(errorMsg, causeMsg, true);
ze.setStatusCode(400);
throw ze;
内容来源于网络,如有侵权,请联系作者删除!