2018-12-11 15:08

@JFinal 谢谢波总

2018-12-03 15:26

@波总 了解一下

2018-11-27 15:55

2018-06-05 13:24

@ActionKey 只能 解决单个子类 有多个 BaseController 子类还是一样报错 汗!! 我认为jfinal应该解决排除某些方法不映射的问题 @JFinal

2018-06-05 11:59

@JFinal 不能改protected ,因为在拦截器中要调用controller.xxx调用,protected 只能子类调用。
暂时通过 @ActionKey 解决了

2018-06-01 09:36

明白了 JFinalViewResolver

2018-05-30 17:54

@JFinal 您不用管jboot, 加个常量,做个判断就好,spring也有通过 file:// classpath://来决定从哪读资源, jfinal 就做简单点

2018-05-30 17:49

@JFinal Constants 加个开关 classpathProp = true;
if( classpathProp ){
inputStream = getClassLoader().getResourceAsStream(fileName);
}else{
inputStream = new FileInputStream(fileName);
}

2018-05-30 17:38

@JFinal 波总,用jfinal的项目那么多,不可能给每个项目都提issue啊,我给你提pr好吗

2018-05-30 12:01

@JFinal 波总,我用的jboot, 而jboot内部使用的是PropKit.use(String fileName) ,我不能强行把jboot的源码改成PropKit.use(new File("/var/config_center/jboot.properties"))。后续我如果还用了某个基于jfinal的框架,它使用了PropKit.use(String fileName),我还得去改它的源码