2017-11-16 19:57
@阿树 放弃JDoc吧,官方都好几个月不进行后续更新了,你现在遇到的还是idea检查提升的问题,后面还有很多坑在等着你,推荐你用Swagger
2017-09-16 00:19
首先前端要用post传,然后生存环境在tomcat目录server.xml中设置post提交文件的大小,默认好像是10240, 最后jetty开发环境把这段代码贴afterJFinalStart进去
// JFinal修改Jetty MaxFormContentSize参数
if (JFinal.me().getServletContext().getClass().getName().equals("org.eclipse.jetty.webapp.WebAppContext$Context")) {
try {
ServletContext ctx = JFinal.me().getServletContext();
Method getContextHandler = ctx.getClass().getMethod("getContextHandler", null);
Object handler = getContextHandler.invoke(ctx, null);
Method setMax = handler.getClass().getMethod("setMaxFormContentSize", int.class);
setMax.invoke(handler, 1024 * 1024 * 100);
} catch (Exception e) {
e.printStackTrace();
}
}