在我的Spring Integration webapp配置中,我添加了一个属性占位符:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:ctx="http://www.springframework.org/schema/context"
...
xsi:schemaLocation="http://www.springframework.org/schema/context
...
">
<ctx:component-scan ... />
<ctx:annotation-config />
<mvc:annotation-driven />
<ctx:property-placeholder location="classpath:config.properties" trim-values="true" />
这是文件内容:
apiPath=/requests
我确定此配置有效,因为我已尝试在http入站通道适配器中使用该值:
<int-http:inbound-channel-adapter id="/api${apiPath}"
channel="httpRequestsChannel"
path="${apiPath}"
...>
</int-http:inbound-channel-adapter>
如果我更改属性值,前端应用程序无法到达端点。
然而,在上下文中我有一个如此配置的端点:
<int:header-value-router input-channel="httpRequestsChannel" ... >
<int:mapping value="POST" channel="httpRequestsPostChannel" />
...
</int:header-value-router>
<int:channel id="httpRequestsPostChannel" />
<int:chain input-channel="httpRequestsPostChannel">
<int:transformer method="transform">
<bean class="transformers.RequestToMessageFile" />
</int:transformer>
...
我想要读取属性值:
public class RequestToMessageFile {
@Autowired
private Environment env;
// ...
public Message<?> transform(LinkedMultiValueMap<String, Object> multipartRequest) {
System.out.println("Value: " + env.getProperty("apiPath"));
但是在控制台上我看到了:
Value: null
我原本应该在XML中声明属性源,它将成为整个Web应用程序环境的一部分,我缺少什么?我应该在其他地方申报来源吗?
我注意到如果我添加以下注释:
@Configuration
@PropertySource("classpath:config.properties")
public class RequestToMessageFile {
正确找到该属性,所以我猜这只是一个配置问题。
如果重要,请点击配置集成的web.xml
部分:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/META-INF/spring.integration/context.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
部分关注this answer我从XML文件中删除了<ctx:property-placeholder>
并添加了以下bean:
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource("classpath:config.properties")
public class WebappConfig {
}
现在,bean和XML文件都可以看到属性。
答案 0 :(得分:1)
引用Martin Deinum:
不,这不是一个配置问题,它应该如何工作。不会向环境添加属性。 @PropertySource的位置。
因此,您应该从XML配置中删除<ctx:property-placeholder>
。继续使用@PropertySource("classpath:config.properties")
并添加此bean定义:
@Bean
public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();
}
注意如何static
不要急切地加载同一@Configuration
中的所有其他bean。