cxf-servlet.xml
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml"/>
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
<bean id="jsonProvider" class="com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider"/>
<jaxws:endpoint id="userService" implementor="#userManager" address="/UserService"/>
<!--<bean id="smdService" class="StSys.RoyoTech.SMDServiceImpl"/>-->
<!--<jaxws:endpoint implementor="#smdService" address="/SmdService" >-->
<!--<jaxws:inInterceptors>-->
<!--<bean class="StSys.RoyoTech.NameSpaceInterceptor"/>-->
<!--</jaxws:inInterceptors>-->
<!--<jaxws:outInterceptors>-->
<!--<bean class="StSys.RoyoTech.OutInterceptor"/>-->
<!--</jaxws:outInterceptors>-->
<!--</jaxws:endpoint>-->
<!-- Add new endpoints for additional services you'd like to expose -->
<jaxrs:server address="/api">
<jaxrs:features>
<cxf:logging/>
</jaxrs:features>
<jaxrs:serviceBeans>
<ref bean="userManager"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<ref bean="jsonProvider"/>
</jaxrs:providers>
<jaxrs:extensionMappings>
<entry key="json" value="application/json"/>
<entry key="xml" value="application/xml"/>
<entry key="feed" value="application/atom+xml"/>
</jaxrs:extensionMappings>
</jaxrs:server>
</beans>