作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Apache CXF 开发 Web 服务并使用 Spring 来管理 bean。和 jetty 作为我的网络服务器。
这是我的 Resource/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 配置文件中:
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"/>
不要忘记删除@Component
来自您的TestService
的注释正如您在 .xml
中声明的那样配置。或者,如果您想保留此注释以便更好地查看,请为其添加名称 @Component("testService")
然后你可以删除 <bean id="serviceBean" class="service.TestService"/>
来自.xml
的声明并将引用更改为 <ref bean="testService"/>
.
您可以在以下位置找到更多信息:
关于spring - 如何将 spring 管理的服务 bean 注入(inject) Apache CXF Servlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18275366/
我是一名优秀的程序员,十分优秀!