将文件添加到Spring Boot的类路径中

时间:2017-10-17 20:53:22

标签: spring spring-boot war

我的server.yml文件包含仅限Spring Framework 属性,如端口号,上下文根路径,应用程序名称。

而且,我有一个applicationContext.xml,其中包含以下内容:

<util:properties id="springProperties" location="classpath*:my.properties">
<context:property-placeholder location="classpath*:my.properties"
        local-override="true" properties-ref="springProperties" />

my.properties文件位于项目的src/main/resources目录中。

那么,我可以从我的java类访问属性,如:

@Autowired
@Qualifier("springProperties")
private Properties props; 

public String getProperty(String key){
    return props.getProperty(key);
}

or like `${my.prop}`

当我构建war并运行Spring Boot(java -jar server.war)时,内部my.properties会解析,并且一切都按预期工作。

但是,我想用外部my.properties覆盖该文件。 我看了https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html

我尝试运行类似:

java -jar server.jar --spring.config.location=classpath:/my.properties

java -jar server.jar --spring.config.location=my.properties

但我可以覆盖的唯一属性来自我的server.yml。意思是,我可以覆盖端口号或应用程序名称。但内部my.properties从未受到影响。

我做错了吗?我知道外部my.property应该在类路径中,然后它会覆盖内部my.property。但它永远不会发生。

1 个答案:

答案 0 :(得分:1)

您可以使用@PropertySource({“classpath:override.properties”})从类路径添加额外的文件,然后使用Environment对象获取值的值或@Value注释

@PropertySource({ "classpath:other.properties" })
@Configuration
public class Config{
    @Autowired
    private Environment env; //use env.getProperty("my.prop")

    @Value("${my.prop}")
    private String allowedpatterns;
}

@Component
public OthenClass{

    @Autowired
    //If this class is not component or Spring annotated class then get it from ApplicationContext
    private Environment env; //use env.getProperty("my.prop")

    @Value("${my.prop}")
    private String allowedpatterns;
}

如果您使用的是Spring Boot,则可以使用代码获取ApplicationContext

ConfigurableApplicationContext ctx = app.run(args);

Environment env = ctx.getBean(Environment.class);