You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by Vassilis Virvilis <v....@biovista.com> on 2018/08/28 10:31:42 UTC

configuring the path per class

Hi again,

I am using CXFNonSpringJaxrsServlet and I would like to configure the path per class

I am assuming here that the equivalent of spring config

<jaxrs:server id="oauthServer" address="/oauth">
...


is the following fragment in web.xml

<init-param>
			<param-name>jaxrs.serviceClasses</param-name>
			<param-value>
				MyPackage.MyClass1, MyPackage.MyClass2
			</param-value>
		</init-param>

but the latter scheme lacks the capability to configure the path.

Any ideas are welcome.

    Vassilis