码迷,mamicode.com
首页 > 数据库 > 详细

java代码获取jdbc链接properties

时间:2015-12-14 18:54:53      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

public static String getDirPath() {
        Resource resource = null;
        Properties props = null;
        String driverClass = null;
        try {
            resource = new ClassPathResource("/data.properties");
            props = PropertiesLoaderUtils.loadProperties(resource);
            driverClass= (String) props.get("wingPath");
        } catch (IOException e) {
            e.printStackTrace();
        }
        return driverClass;
        
    }

 

java代码获取jdbc链接properties

标签:

原文地址:http://www.cnblogs.com/zrui-xyu/p/5045913.html

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