时间:2023-01-10 11:52:19 | 栏目:JAVA代码 | 点击:次
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()
需要采用这种写法:
ClassPathResource resource = new ClassPathResource(filePath); InputStream inputStream = resource.getInputStream();
这样就可以获取到了。