Springs 找不到端点映射
Springs ws no Endpoint mapping found for
所以我遇到了这个试图攻击我的 Web 服务的错误
No endpoint mapping found for [SaajSoapMessage {http://www.example.org/Fta_Consumption/Interface/}triggerFTARequest
我的端点 class 看起来像
@Endpoint
public class TriggerFtaEndPoint {
private static final String NAMESPACE_URL = "http://www.example.org/Fta_Consumption/Interface/";
@PayloadRoot(localPart = "triggerFTARequest", namespace = NAMESPACE_URL)
@ResponsePayload@Transactional(propagation=Propagation.REQUIRED)
public TriggerFTAResponse triggerFta(@RequestPayload TriggerFTARequest request, MessageContext messageContext) {
所以在问这个问题之前,我尝试过 link
No endpoint mapping found when setting up Spring Web Service
但我仍然无法弄清楚我的问题。一切似乎都已到位,但仍然无法找出问题。
我知道了。根据我当前的框架,我必须将 bean 声明到 springs-ws
文件中。我认为简单地用 @Endpoint
注释就可以了。
所以我遇到了这个试图攻击我的 Web 服务的错误
No endpoint mapping found for [SaajSoapMessage {http://www.example.org/Fta_Consumption/Interface/}triggerFTARequest
我的端点 class 看起来像
@Endpoint
public class TriggerFtaEndPoint {
private static final String NAMESPACE_URL = "http://www.example.org/Fta_Consumption/Interface/";
@PayloadRoot(localPart = "triggerFTARequest", namespace = NAMESPACE_URL)
@ResponsePayload@Transactional(propagation=Propagation.REQUIRED)
public TriggerFTAResponse triggerFta(@RequestPayload TriggerFTARequest request, MessageContext messageContext) {
所以在问这个问题之前,我尝试过 link
No endpoint mapping found when setting up Spring Web Service
但我仍然无法弄清楚我的问题。一切似乎都已到位,但仍然无法找出问题。
我知道了。根据我当前的框架,我必须将 bean 声明到 springs-ws
文件中。我认为简单地用 @Endpoint
注释就可以了。