java代码获取jdbc链接properties

时间:2022-01-15 09:38:17
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; }