private static RestDefinition toRestdefinition(RouteBuilder builder,
Method method,
HttpMethod httpMethod,
String restPath) {
RestDefinition answer = builder.rest();
String fromPath = restPath;
if (httpMethod == HttpMethod.GET) {
answer = answer.get(fromPath);
} else if (httpMethod == HttpMethod.POST) {
answer = answer.post(fromPath);
} else if (httpMethod == HttpMethod.PUT) {
answer = answer.put(fromPath);
} else if (httpMethod == HttpMethod.DELETE) {
answer = answer.delete(fromPath);
} else if (httpMethod == HttpMethod.PATCH) {
answer = answer.patch(fromPath);
} else {
throw new RuntimeException("method currently not supported in Rest Paths : " + httpMethod);
}
answer = setBodyType(answer, method);
return answer;
}
RestHelper.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:drinkwater-java
作者:
评论列表
文章目录