Spring Boot 无法访问依赖 jars 类路径中的资源

Posted

技术标签:

【中文标题】Spring Boot 无法访问依赖 jars 类路径中的资源【英文标题】:Springboot Unable to access a resource inside a dependent jar's classpath 【发布时间】:2017-11-17 22:56:18 【问题描述】:

我有一个 spring boot JAR MyMain.jar,它在 BOOT-INF/lib 中有依赖的 jar。

我正在尝试访问 BOOT-INF/lib/MyDep.jar/abcd.properties 中的属性文件。

我尝试了下面的代码。

InputStream in = new ClassPathResource("abcd.properties").getInputStream();
System.out.println("InputStream : "+in);
String line;
BufferedReader br = new BufferedReader(new InputStreamReader(in));          
while ((line = br.readLine()) != null) 
    System.out.println(line);

这在我的 Eclipse IDE 中完美运行。但是当我在命令行上将它作为 jar 运行时,它不会打印任何内容。

org.springframework.boot.loader.jar.ZipInflaterInputStream@214c265e

readLine() 在命令行运行期间给出 null。

有人可以帮忙吗!

【问题讨论】:

我发现很难按照您的要求进行操作,但听起来应该可以。也许您可以分享一个重现问题的小型示例项目? @AndyWilkinson - 基本上从父 jar 文件类,我试图读取依赖 jar 的类路径中的属性文件。我将创建一个示例项目来分享 【参考方案1】:

或者,这对我有用。

在应用项目中创建此类

@Configuration
@ComponentScan("yourpackage")
public class AppConfig 
    @Configuration
    @PropertySource("common.properties")
    static class default

如果你想通过不同的配置文件读取配置文件(-Dspring.profiles.active)

@Configuration
@ComponentScan("yourpackage")
public class AppConfig 
    @Profile("alpha")
    @Configuration
    @PropertySource("common-alpha.properties")
    static class Alpha

    @Profile("staging")
    @Configuration
    @PropertySource("common-staging.properties")
    static class Staging

    @Profile("production")
    @Configuration
    @PropertySource("common-production.properties")
    static class Production

你可以像下面这样使用 spring @Autowired 注解,但要确保你用@Component 或类似的注解你的类。

@Autowired
Environment env;

您可以在属性文件中获取该属性

 env.getProperty("property")

希望对你有帮助。

【讨论】:

我可以试一试,但我希望属性源是参数参数,而不是硬编码的静态文件 @PropertySource("$propertiesArgument.properties") 并且您只需在应用程序启动期间提供的命令行参数上传递 -DpropertiesArgument。

以上是关于Spring Boot 无法访问依赖 jars 类路径中的资源的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 项目访问依赖 jar 包内部的资源文件的路径问题详解

Spring Boot 可执行 jar 无法访问索引页面

Maven对原始Spring Boot JAR的依赖[重复]

包括外部 jar 依赖项 spring boot 测试

Gradle:使用 Spring Boot 依赖项构建“fat jar”

spring boot项目进行war部署,对于静态资源无法访问的问题