2019-01-13 23:06
@JFinal 用的enjoy3.6-SNAPSHOT
看了看springboot官方推荐 thymeleaf ,还是 enjoy 好用,轻巧。
对我来说,现在知道的模板 没有一个能比得上 enjoy 的。
freemarker、volecity等,差远了。
2019-01-10 13:03
@JFinal 刚看到了 , Routes 的 setClearAfterMapping 哈哈。
2018-12-26 17:58
@JFinal
try (BufferedReader reader = request.getReader()) {
StringBuilder sb = new StringBuilder();
String str = null;
while ((str = reader.readLine()) != null) {
sb.append(str);
}
JSONObject jsonObject = JSONObject.parseObject(sb.toString());
log.debug("jsonObject is : " + jsonObject);
request.setAttribute("_obj", jsonObject);
} catch (IOException e) {
e.printStackTrace();
}
比如我的字段 context 中 带 换行符 \r\n 通过这种转换后就消失了。
2018-12-26 17:57
@JFinal 之前用 BufferedReader 调用,然后会把 \r \n 消除掉,所以采用了 字节流方式