美文网首页
SpringBoot jar包启动,获取jar包所在目录

SpringBoot jar包启动,获取jar包所在目录

作者: chenzan | 来源:发表于2022-07-08 08:40 被阅读0次

此方法无论是jar包启动还是调试启动均可得到对应路径

ApplicationHome ah = new ApplicationHome(getClass());
// 获取jar包所在目录
String jarPath = ah.getSource().getParentFile().getAbsolutePath();
// 获取jar包同级下的config.properties文件
File file = new File( + File.separator + "config.properties");
1657240707545.png

相关文章

网友评论

      本文标题:SpringBoot jar包启动,获取jar包所在目录

      本文链接:https://www.haomeiwen.com/subject/wzimbrtx.html