gpt4 book ai didi

java - Spring Webservice启动时连接错误如何处理?

转载 作者:搜寻专家 更新时间:2023-10-31 19:48:31 25 4
gpt4 key购买 nike

我在 Spring 中使用 JaxWsPortProxyFactoryBean 来连接 SOAP 网络服务。问题是,如果在 Spring 启动的那一刻,web 服务就关闭了(因为网络问题)。它将导致异常并停止 Spring 初始化。我不希望出现这种行为,应用程序不需要仅因为 Web 服务连接失败而停止。

有没有更好/正确的方法使用 Spring 来处理这个问题?这是我当前的 xml 上下文。

<bean id="beanWebServiceSOAP" class="org.springframework.remoting.jaxws.JaxWsPortProxyFactoryBean" lazy-init="true">
<property name="serviceInterface" value="com.company.bean.BeanWebServiceSoap" />
<property name="wsdlDocumentUrl" value="${bean.wsdldocumenturl}" />
<property name="namespaceUri" value="${bean.namespaceuri}" />
<property name="serviceName" value="BeanWebService" />
<property name="portName" value="BeanWebServiceSoap" />
</bean>

谢谢,

最佳答案

也许通过设置属性“lookupServiceOnStartup” ' 为假:

<bean id="beanWebServiceSOAP" class="org.springframework.remoting.jaxws.JaxWsPortProxyFactoryBean" lazy-init="true">
<property name="serviceInterface" value="com.company.bean.BeanWebServiceSoap" />
<property name="wsdlDocumentUrl" value="${bean.wsdldocumenturl}" />
<property name="namespaceUri" value="${bean.namespaceuri}" />
<property name="serviceName" value="BeanWebService" />
<property name="portName" value="BeanWebServiceSoap" />
<property name="lookupServiceOnStartup" value="false" />
</bean>

关于java - Spring Webservice启动时连接错误如何处理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10040866/

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