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

jfinal 读取配置文件

时间:2016-05-03 12:29:53      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

/**
 * 配置文件工具类
 * @author Administrator
 *
 */
public class ConfigUtil {

    /* 加载服务配置文件  */
    private static Prop prop = PropKit.use(“test.properties”);
    
    
    private ConfigUtil(){}
    
    
    /**
     * 判断是否调试定时任务
     * @return
     */
    public static boolean isDebug(){
        if(prop.getBoolean("bs.job.debug")){
            return true;
        }
        return false;
    }
    
    
}

 

jfinal 读取配置文件

标签:

原文地址:http://www.cnblogs.com/zt528/p/5454329.html

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