• 2.2 configConstant(..)

    2.2 configConstant(..)

    此方法用来配置JFinal常量值,如开发模式常量devMode的配置,如下代码配置了JFinal运行在开发模式:

    1. public void configConstant(Constants me) {
    2. me.setDevMode(true);
    3. }

    在开发模式下,JFinal会对每次请求输出报告,如输出本次请求的URL、Controller、Method以及请求所携带的参数。