This commit is contained in:
zhuangqian 2016-09-10 11:09:54 +08:00
parent eaaee57d44
commit a79c7d5127
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#Spring-Blade java开发平台
## 平台简介
Spring-Blade是基于多个优秀的开源项目高度整合封装而成的快速开发平台。(主要用于交流学习)
Spring-Blade是基于多个优秀的开源项目高度整合封装而成的快速开发平台。
PS:因为喜欢刀锋战士所以取名了SpringBlade当中有一个类也命名为Blade。
但是后来发现已经有了一个高人气的开源作品Blade作者是 王爵。
很尴尬,不过还是需要在这儿声明一下。

View File

@ -101,6 +101,10 @@ public class BladeController implements ConstCurd, ConstCache {
return Conver.toLong(getRequest().getParameter(name), defaultValue);
}
public String getParameterToEncode(String para) {
return URLKit.encode(getRequest().getParameter(para), CharsetKit.UTF_8);
}
public String getParameterToDecode(String para) {
return URLKit.decode(getRequest().getParameter(para), CharsetKit.UTF_8);
}