@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());
@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());
相关文章: