我在制作@ImportResource
与PropertySourcesPlaceholderConfigurer
. 我能找到的最接近的是这个问题,但我不明白如何让它为我工作。
这是我的配置类:
@Configuration
@ComponentScan(basePackages = "com.example")
@EnableWebMvc
@EnableScheduling
@EnableAsync
@ImportResource("classpath:/config/webservices.xml")
public class AppConfig {
@Bean
public static PropertySourcesPlaceholderConfigurer properties(Environment environment) throws IOException {
String env = StringUtils.defaultIfBlank(environment.getProperty("env"), "local");
PropertySourcesPlaceholderConfigurer configurer = new PropertySourcesPlaceholderConfigurer();
Resource[] allResources = generateListOfPropertiesFiles(env);
configurer.setLocations(allResources);
configurer.setIgnoreResourceNotFound(true);
return configurer;
}
:
}
由于我们的配置文件设置,我需要这种相当复杂的方法。
提到的/config/webservices.xml
看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<jaxws:client id="sessionControl"
serviceClass="com.service.schemas.work1_2.SessionControl" address="${endpoint.sessionControl}">
<jaxws:features>
<bean class="org.apache.cxf.feature.LoggingFeature" />
</jaxws:features>
</jaxws:client>
</beans>
endpoint.sessionControl
.properties
在-files之一中定义。
据我了解,XML 在PropertySourcesPlaceholderConfigurer
存在之前被解析和评估,因此,没有任何代码替换占位符。但是,我如何让 Spring 的内部理解它应该在读取所有属性后解析 XML?使用正确@ImportResource
吗?我需要为 Spring 提供什么?还是有一个相当简单的技巧可以让它发挥作用?
在 Spring 的这一部分,我是 bean 生命周期和 bean 工厂的菜鸟,我总是惊讶于它是如何工作得很好(嗯,通常)......
--EDIT--
我一直在尝试在@PostConstruct 中设置地址,但我无法让它工作。它总是回退到“${...}”:
@Inject
private SessionControl sessionControl;
@Value("${endpoint.sessionControl}")
private String endpointSessionControl;
@PostConstruct
public void postConstruct() {
((Client) sessionControl).getConduit().getTarget().getAddress().setValue(endpointSessionControl);
((Client) sessionControl).getEndpoint().getEndpointInfo().setAddress(endpointSessionControl);
}