Spring属性占位符不在jaxws:client(cxf)地址属性中解析

Environment:

    Spring MVC : 4.1.7.RELEASE
    CXF: 3.0.0
    java: 1.8

web.xml --- loads appContext.xml (spring cofigs) & cxfContext.xml (configs for cxf)

spring-servlet.xml --- loading the spring mvc configs.

我正在使用以下方式加载属性文件.

@Configuration

    @PropertySource(value = { "classpath:config.properties" })
    public class Configuration {
        @Bean
        public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
            return new PropertySourcesPlaceholderConfigurer();
        }
    }

除了一个案例,属性得到解决,没有问题.

我正在使用CXF进行Web服务,并且在使用“${addressVal}”时,地址属性无法解析.除了“jaxws:client”之外,xml中的所有其他属性都是gettign加载的.

<jaxws:client id="port"
        serviceClass="com.service.Myclass"
        address="${addressVal}" />

>问题出在哪里.我做错了什么.
> servlet上下文/应用程序上下文加载的问题?

请指教.

解决方法:

我有同样的问题.可悲的是还没有找到解决方案.但是,对于发现此问题的任何人来说,解决方法是使用JaxWsProxyFactoryBean.

例:

<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd">
<bean id="client" class="demo.spring.service.HelloWorld" factory-bean="clientFactory" factory-method="create"/>
<bean id="clientFactory" class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
    <property name="serviceClass" value="demo.spring.service.HelloWorld"/>
    <property name="address" value="${some.property.value}"/>
</bean>

它不是很好,因为你必须注入工厂,调用create()和cast,但至少它是有效的.

@Autowired
@Qualifier("clientFactory")
private JaxWsProxyFactoryBean factory;

public void callService() {
    HelloWorld helloWorld = (demo.spring.service.HelloWorld)factory.create();
}

您还可以将以下内容添加到spring配置中以创建特定的bean,但这对我不起作用.试图注入该bean失败,这就是为什么我选择了上述方法.

<bean id="client" class="demo.spring.service.HelloWorld" factory-bean="clientFactory" factory-method="create"/>

另请参见页面底部的http://cxf.apache.org/docs/writing-a-service-with-spring.html

上一篇:java安全编码指南之:基础篇


下一篇:java – TomEE嵌入式和自定义JAX-RS应用程序部署