This commit is contained in:
Redkale
2016-07-18 21:06:19 +08:00
parent ea059594f0
commit 35029ad796

View File

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