gpt4 book ai didi

spring - 在具有共享服务的单个应用程序中使用 Apache cxf 和 spring mvc

转载 作者:行者123 更新时间:2023-12-04 14:47:44 24 4
gpt4 key购买 nike

我目前正在做一个基于 spring MVC 的项目,它只是一个使用 spring MVC 模板的标准项目。所以我有 web.xml 和 servlet-context.xml。

我正在努力将 Apache cxf web 服务添加到这个项目中,并遇到了与现有 Spring MVC 共享服务的一些问题。

我最初的方法是尝试让 Web 服务正常工作,所以我的 web.xml 如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<!-- The definition of the Root Spring Container shared by all Servlets
and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml
/WEB-INF/spring/jaxwsServlet/jaxwsServlet-context.xml
</param-value>
</context-param>




<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Process web service requests -->
<servlet>
<servlet-name>jaxws</servlet-name>
<servlet-class>com.sun.xml.ws.transport.http.servlet.WSSpringServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>jaxws</servlet-name>
<url-pattern>/industryAspectWS</url-pattern>
</servlet-mapping>


<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

和我的 jaxwsServlet-context.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ws="http://jax-ws.dev.java.net/spring/core"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:wss="http://jax-ws.dev.java.net/spring/servlet"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://jax-ws.dev.java.net/spring/core
classpath:spring-jax-ws-core.xsd
http://jax-ws.dev.java.net/spring/servlet
classpath:spring-jax-ws-servlet.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd"
>
<wss:binding url="/industryAspectWS">
<wss:service>
<ws:service bean="#industryAspectWS"/>
</wss:service>
</wss:binding>

<!-- Web service methods -->
<bean id="industryAspectWS" class="com.example.ws.IndustryAspectWS"></bean>

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

<beans:import resource="../HibernateTransaction.xml" />

<beans:import resource="../JaxbMarshaller.xml" />

</beans>

我复制了 上下文:组件扫描bean:导入 servlet-context.xml 中的部分

由于我能够启动服务器、调用 Web 服务以及访问 servlet 和 jsp,因此该配置工作正常。 但是,我注意到由于我在两个上下文 xml 文件中都引用了 hibernateTransaction.xml,因此有两个 session 工厂。

我想在 Apache cxf 和 Spring MVC Controller 之间共享所有服务(例如 hibernate ),所以我尝试将设置放在 root-context.xml 中,但没有用。我也尝试在网上搜索,但没有找到任何关于共享服务的完整示例。我们是否可以设置一个设置在两者之间共享服务?

==================================================

我在发布这篇文章后尝试了一些设置,并认为如果我把
<context:component-scan base-package="com.example" />


<tx:annotation-driven transaction-manager="txManagerExample" />

在 servlet-context.xml 和 jaxwsServlet-context.xml 中,它都能正常工作。所有其他设置都可以保留在共享的 root-context.xml 中

最佳答案

WSSpringServlet不是CXF。是地铁。我建议使用 CXF。在这种情况下,您将拥有 CXFServlet但是随后您将在主要 Spring 上下文(由 ContextLoaderListener 创建的上下文)中设置 CXF。

它将按如下方式工作:您的主上下文将拥有包括 CXF 在内的所有共享 bean。您的 Servlet 上下文将只有您的 Controller 。由于 servlet 上下文是主上下文的子级,因此您的 Controller 也可以访问主上下文中的所有内容。

Embedding CXF inside of Spring page , CXF Servlet Transport Page , 和 my answer to this question关于在 servlet 上下文和主上下文之间共享 bean。

关于spring - 在具有共享服务的单个应用程序中使用 Apache cxf 和 spring mvc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12170631/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com