系统相关
首页 > 系统相关> > SpringBoot在window和linux都可以获取resource路径的方法

SpringBoot在window和linux都可以获取resource路径的方法

作者:互联网

// 获取项目根路径
final File basePath = new File(ResourceUtils.getURL("classpath:").getPath());

这个再Windows下是可以的,但是在Linux (centos7)下是不行的,正确的获取方法:

 

Resource resource = new ClassPathResource("");
System.out.println(resource.getFile().getAbsolutePath());

 

标签:getURL,resource,SpringBoot,路径,获取,window,File,new
来源: https://blog.csdn.net/weixin_41228362/article/details/104771249