diff --git a/src/org/redkale/net/http/HttpRequest.java b/src/org/redkale/net/http/HttpRequest.java index f39a19ee3..038d4f9b3 100644 --- a/src/org/redkale/net/http/HttpRequest.java +++ b/src/org/redkale/net/http/HttpRequest.java @@ -20,7 +20,8 @@ import org.redkale.util.ByteArray; * 同时提供json的解析接口: public Object getJsonParameter(Class clazz, String name)
* RedKale提倡带简单的参数的GET请求采用类似REST风格, 因此提供了 getRequstURIPath 系列接口。
* 例如简单的翻页查询
- * /pipes/record/query/offset:0/limit:20 获取页号: int offset = request.getRequstURIPath("offset:", 0);
+ * /pipes/record/query/offset:0/limit:20
+ * 获取页号: int offset = request.getRequstURIPath("offset:", 0);
* 获取行数: int limit = request.getRequstURIPath("limit:", 10); *

* 详情见: http://redkale.org