springboot打成jar后无法读取根路径和文件的解决
时间:2023-01-10 11:52:19|栏目:JAVA代码|点击: 次
springboot打成jar后无法读取根路径和文件
ClassLoader.getSystemResourceAsStream(authenticationFileName) PropertiesUtils.class.getClass().getResourceAsStream("/authentication.properties")
未打包时都可以获取到根路径和文件
打包后报java.lang.NullPointerException
ClassPathResource resource = new ClassPathResource("application.yml"); InputStream inputStream = resource.getInputStream();
这是因为打包后Spring试图访问文件系统路径,但无法访问JAR中的路径。
因此必须使用resource.getInputStream()
springboot打jar找不到资源文件
需要采用这种写法:
ClassPathResource resource = new ClassPathResource(filePath); InputStream inputStream = resource.getInputStream();
这样就可以获取到了。
上一篇:SpringBoot调用第三方WebService接口的操作技巧(.wsdl与.asmx类型)
栏 目:JAVA代码
本文标题:springboot打成jar后无法读取根路径和文件的解决
本文地址:http://www.codeinn.net/misctech/223382.html