码迷,mamicode.com
首页 > 其他好文 > 详细

Jfinal + jetty 8 出现 form too large问题

时间:2018-01-05 19:04:43      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:object   and   null   col   equal   als   cep   ips   log   

// 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();
}
}
放在afterJFinalStart()里

 

Jfinal + jetty 8 出现 form too large问题

标签:object   and   null   col   equal   als   cep   ips   log   

原文地址:https://www.cnblogs.com/5icuke/p/8206238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!