如何在Spring Boot中引用XML文件中的占位符属性

时间:2014-10-10 15:20:48

标签: java spring spring-boot

我试图在Spring Boot加载的xml文件中引用占位符,该文件定义了一些属性。但到目前为止没有运气。我在xml文件中尝试了以下内容。

<context:property-placeholder location="classpath:application.properties" />

<rabbit:queue name="${dummy}" durable="true" />

我希望将$ {dummy}替换为xml文件中的属性。

有关如何实现这一目标的任何建议吗?

启动班

@Configuration
@EnableAutoConfiguration
@ComponentScan
@ImportResource({ "cxf-servlet.xml", "rabbit.xml" })
public class StartUp {

    public static void main(String[] args) throws Exception {

        SpringApplication.run(StartUp.class, args);
    }
}

0 个答案:

没有答案