我正在運行一個發佈REST和SOAP服務的Web應用程序。 當我通過gradle運行(spring-boot插件)運行我的應用程序或作爲STS的Java應用程序運行它們時,它們都工作正常。 SOAP服務在從SoapUI調用時起作用,或從每次從gradle run或STS運行應用程序時從index.html調用ajax到$ .soap。 我剛剛嘗試在Tomcat 7上部署我的webapp。Webapp靜態內容和REST服務工作正常。問題是SOAP服務不起作用。Spring Tomcat部署:Soap調用返回「405:方法不允許」
我得到下面的錯誤代碼,無論是從index.html的$ .soap擴展來電或測試了SoapUI:
POST http://localhost:8080/soap/ 405(不允許的方法)
這是我的servlet-context.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:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.1.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing
infrastructure
Enables the Spring MVC @Controller programming model -->
<mvc:annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up
static resources in the ${webappRoot}/resources directory -->
<mvc:resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources
in the /WEB-INF/views directory -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
<context:component-scan base-package="com.stw_2015.app" />
</beans>
這我@Endpoint註釋類的結構:
@Endpoint
public class SoapController {
private static final String NAMESPACE_URI = "http://com.stw_2015.app/soap";
private static final Logger logger = LoggerFactory.getLogger(SoapController.class);
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "registerActionRequest")
@ResponsePayload
public RegisterActionResponse registerAction (
@RequestPayload RegisterActionRequest registerActionRequest) {
................
}
}
可能的原因是,POST請求SOAP服務正在由Spring拒絕。有什麼方法可以啓用它們嗎?我的所有REST服務都是GET請求,但我知道@RequestMapping帶註釋的方法可以註釋爲GET或POST請求偵聽器。但是,對於我的肥皂服務,我只是不知道。
有人可以幫我嗎? 謝謝!
PD:請告訴我是否應該粘貼其他文件內容。