我试图在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);
}
}