2019-02-27 12:28
@JFinal 升级后还是有这个问题 com.jfinal.template.TemplateException: 您的主机中的软件中止了一个已建立的连接。
2017-12-01 08:49
@JFinal 这个问题主要是调用端Content-Type没有boundary导致的 如下是正确的内容Content-Type: multipart/form-data; boundary=rxU1IcP2kHsJVF37W5_8tRtSlAnB-KIhGP; charset=UTF-8
2017-11-22 23:26
private boolean isReadData = false;
private String readData = "";
@Override
public String getPara() {
if ("application/json".equals(getRequest().getContentType())
|| "text/json".equals(getRequest().getContentType())) {
if(!isReadData){
readData = HttpKit.readData(getRequest());
isReadData = true;
}
return readData;
}
return super.getPara();
}
@Override
public String getPara(String name) {
if ("application/json".equals(getRequest().getContentType())
|| "text/json".equals(getRequest().getContentType())) {
return JSONObject.parseObject(getPara()).getString(name);
}
return super.getPara(name);
}