JAXRS でエンドポイントの詳細を使用してコンテキスト構成を具体化するにはどうすればよいですか?
これが私がJAXWSのために持っているものです:
<jaxws:endpoint id="s-myService" implementor="#myService"
serviceName="s2:MyService"
endpointName="e2:MyServiceEndpoint"
address="/my-service/soap/base"
publishedEndpointUrl="http://localhost:8080/my-service/soap/base"
xmlns:s2="http://localhost:8080/example-service/ns"
xmlns:e2="http://localhost:8080/example-service/ns"
/>
次の JAXRS エンドポイントで同じ詳細を実装するにはどうすればよいですか?
<jaxrs:server id="r-myService"
address="/my-service/rest/base">
<jaxrs:serviceBeans>
<ref bean="myRestService" />
</jaxrs:serviceBeans>
<jaxrs:providers>
<bean class="org.codehaus.jackson.jaxrs.JacksonJsonProvider" />
<ref bean="SomethingGives"/>
</jaxrs:providers>
<jaxrs:extensionMappings>
<entry key="json" value="application/json" />
<entry key="xml" value="application/xml" />
</jaxrs:extensionMappings>
</jaxrs:server>
私は、publishedEndpointUrl が REST サービスで具体化されることを本当に望んでいます。JAXRSServerFactoryBeanの API は、継承されたフィールドを介して実行できることを意味します。コンテキスト構成はどのように実装する必要がありますか?