我正在做一个zoho到quickbooks的集成。其中,我为quickbooks桌面创建了web应用程序和soap服务,以便与之通信。我的web应用程序可以很好地处理spring注解,但是autowired注解就不行了。我想知道你是否可以保持下面这样的web.xml配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" id="WebApp_ID" version="4.0">
<display-name>zohoquickbooks</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<session-config>
<session-timeout>2</session-timeout>
</session-config>
<servlet>
<servlet-name>zohoquickbooksdispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/zohoquickbooks-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>zohoquickbooksdispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>
com.sun.xml.ws.transport.http.servlet.WSServletContextListener
</listener-class>
</listener>
<servlet>
<servlet-name>qbservice</servlet-name>
<servlet-class>
com.sun.xml.ws.transport.http.servlet.WSServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>qbservice</servlet-name>
<url-pattern>/qbservice</url-pattern>
</servlet-mapping>
</web-app>
发布于 2021-08-19 10:14:53
此配置有效。web.xml中的jaxws服务存在一个问题。实现类的对象是由jax-ws容器初始化的,而不是由spring初始化的,所以自动装配该类中的其他对象不起作用。你可以通过在URL中指定的"https://dzone.com/articles/autowiring-spring-beans-into-classes-not-managed-by-spring"“将spring管理对象放到非spring管理对象中。除此之外,这个配置可以正常工作。你可以在同一端口的同一容器上运行web应用程序和soap服务。只是url路径需要不同。
https://stackoverflow.com/questions/68812676
复制相似问题