首页 > 技术文章 > java代码获取jdbc链接properties

zrui-xyu 2015-12-14 17:32 原文

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;
        
    }

 

推荐阅读