application.yml文件中配置路径的各种结果
@Value("${pfx}")
private String pfxPath;
File file = new File(pfxPath);
log.info("pfxPath value " + pfxPath);
log.info("file.getPath()" + file.getPath());
log.info("file.getAbsolutePath()" + file.getAbsolutePath());



浙公网安备 33010602011771号