情况
我正在将带有 Apache CXF 2.6.2 的 Web 服务部署到 Tomcat 服务器。我正在使用 CXFServlet 和以下基于 Spring 的配置导出服务:
<?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"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml"/>
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
<jaxws:endpoint id="test_endpoint"
implementor="org.xyz.TestImpl"
address="/test"/>
<bean id="testBean" class="org.xyz.TestBean">
<property name="endpoint" ref="test_endpoint" />
</bean>
</beans>
在我的示例部署中,CXFServlet 使用相对路径 /service,例如 TestImpl 类实现的 Web 服务可作为http://domain.com/tomcat-context/services/test 使用 TestBean 类有一个端点设置器和它是由 Spring 设置的。
目标
我想使用端点字段确定 TestBean 类中的端点 test_endpoint 提供的地址(URL)。结果应该是“http://domain.com/tomcat-context/services/test”。
我试过的
log.info("Endpoint set to " + endpoint);
log.info("Address: " + endpoint.getAddress());
org.apache.cxf.jaxws.EndpointImpl ep = (org.apache.cxf.jaxws.EndpointImpl) endpoint;
log.info("Other Address: " + ep.getBindingUri());
log.info("Props: " + ep.getProperties());
但结果只是
Address: /Sachbearbeiter
Other Address: null
Props: {}
如何获得完整的 URL?有没有办法不用我自己构建?