欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot 之 获取相关路径

程序员文章站 2022-05-09 23:17:40
...
    @Test
    public void getPath() throws FileNotFoundException {
        //获取在resources路径下的配置文件
        System.out.println(ResourceUtils.CLASSPATH_URL_PREFIX+"generatorConfig.xml");
        //获取项目所在绝对路径
        System.out.println("++++++++");
        System.out.println(System.getProperty("user.dir"));

        //获取classes路径
        System.out.println("-------------");
        String path = ResourceUtils.getURL("classpath:").getPath();
        System.out.println(path);

        System.out.println("000000000000");
        String conf = Thread.currentThread().getContextClassLoader().getResource("").getPath();
        System.out.println(conf);
    }

springboot 之 获取相关路径

相关标签: 路径