【问题标题】:How to inject spring managed service beans to Apache CXF Servlet如何将 Spring 托管服务 bean 注入 Apache CXF Servlet
【发布时间】:2013-08-16 14:12:03
【问题描述】:

我正在尝试使用 Apache CXF 开发 Web 服务并使用 Spring 来管理 bean。和码头作为我的网络服务器。

这是我的资源/WebService 类

   import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.PathParam;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.MediaType;

import org.springframework.stereotype.Component;

    @Component
    @Path("/test")
    public class TestService{

        @GET
        @Path("/add/{name}")
        @Produces(MediaType.APPLICATION_JSON)
        public String showName(@PathParam("name") String name){
            return name + "";
        }


    }

我的 Web.xml

<!-- Bean Declarations -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>WEB-INF/test-beans.xml</param-value>
</context-param>

 <listener>
    <listener-class>
        org.springframework.web.context.ContextLoaderListener
    </listener-class>
</listener>


<servlet>
    <servlet-name>CXFServlet</servlet-name>
    <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>CXFServlet</servlet-name>
    <url-pattern>/api/*</url-pattern>
</servlet-mapping>

还有 test-beans.xml

<?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:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
       http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

    <context:component-scan base-package="com.test.ws" />

</beans>

我如何将我的 Spring 管理服务 bean 与 Apache CXF 集成为 Rest Web 服务?

【问题讨论】:

    标签: spring web-services dependency-injection cxf


    【解决方案1】:

    在你的 Spring 配置文件中添加一个命名空间:

    xmlns:jaxrs="http://cxf.apache.org/jaxrs"
    

    还有它的架构位置:

     http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
    

    您还需要一些 CXF Rest web 服务的依赖项:

    <dependency>
       <groupId>org.apache.cxf</groupId>
       <artifactId>cxf-rt-frontend-jaxrs</artifactId>
       <version>${cxf.version}</version>
    </dependency>
    

    然后在 Spring 配置中配置 JAX-RS 服务器,如下所示:

     <jaxrs:server id="yourJaxRsServer" address="/testService">
        <jaxrs:serviceBeans>
           <ref bean="serviceBean"/>
        </jaxrs:serviceBeans>
     </jaxrs:server>
    
     <bean id="serviceBean" class="service.TestService"/> 
    

    不要忘记从 TestService 类中删除 @Component 注释,因为您在 .xml 配置中声明它。或者,如果您想保留此注释以获得更好的视图,请为其添加名称@Component("testService"),然后您可以从.xml 中删除&lt;bean id="serviceBean" class="service.TestService"/&gt; 声明并将引用更改为&lt;ref bean="testService"/&gt;

    您可以在以下位置找到更多信息:

    【讨论】:

    • 那么我将如何访问我的服务?给定项目名称是 spring-cxf 并且 cxf servlet 配置为 /api/* ?
    • 您能否提供有关如何使用 Spring Java Config 注册服务的信息?
    【解决方案2】:

    要访问您的网络服务,您需要点击以下 URL

    http://<HOST>:<PORT>/<Application Context>/testService/api/test/add/<NAME_YOU_WANT_TO_ADD>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2014-07-01
      • 1970-01-01
      • 2016-05-27
      相关资源
      最近更新 更多