affirmpaymentcontroller请求方法“post”

hpcdzsge  于 2021-07-12  发布在  Java
关注(0)|答案(2)|浏览(279)

下面是我的方法

@RequestMapping(value =  "/authorise", method = {RequestMethod.POST,RequestMethod.GET})
   public String authorise(@RequestParam(name = "checkout_token", required = false) final String checkoutToken,
         final Model model, final RedirectAttributes redirectModel) {

      boolean success = false;

      try
      {
         success = affirmPaymentFacade.authorisePayment(checkoutToken);
      }
      catch (RuntimeException re)
      {
         LOG.warn("error during payment authorisation ", re);
      }
      if(success){
         final OrderData orderData;
         try
         {
            orderData = getCheckoutFacade().placeOrder();
         }
         catch (final Exception e)
         {
            LOG.error("Failed to place Order", e);
            //TODO-BE auth reversal
            //GlobalMessages.addErrorMessage(model, "checkout.affirm.order.failed");
            return REDIRECT_PREFIX + CHECKOUT_AFFIRM_ERROR;
         }

         return redirectToOrderConfirmationPage(orderData);
      }else {
         //GlobalMessages.addErrorMessage(redirectModel,"checkout.affirm.authorisation.failed");
         return REDIRECT_PREFIX + CHECKOUT_AFFIRM_ERROR;
      }
   }

当get请求被调用时,它工作正常,但是当我们用post请求和请求有效负载checkout\u token=x调用时,我得到下面的错误
warn[hybrishttp24][defaulthandlerexceptionresolver]已解析[org.springframework.web.httprequestmethodnotsupportedexception:请求方法'post'不受支持]
编辑
即使我尝试删除所有的参数,但到目前为止仍然没有运气。

7gyucuyw

7gyucuyw1#

尝试为此url禁用csrf令牌

njthzxwz

njthzxwz2#

首先是关于在stackoverflow上更好地发布的一些信息:
将您的问题减少到尽可能紧凑的代码(如果您在方法的路由方面遇到问题,那么您在方法中的代码并不重要)
由于使用了springmvc,这不是hybris唯一的问题。你会在 Spring mvc论坛上得到更多的答案,就像在hybris stackoverflow中一样。
请包括你们的进口货
使用此代码:

package com.example.demo;

import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

@RestController
public class TestController
{
    @RequestMapping(value = "/authorise", method = { RequestMethod.POST, RequestMethod.GET })
    public String authorise(@RequestParam(name = "checkout_token", required = false) final String checkoutToken,
            final Model model, final RedirectAttributes redirectModel)
    {
        return "authorise";
    }
}

}
方法可通过get和post访问:

curl -X GET http://localhost:9080/authorise
>> authorise

curl -X POST http://localhost:9080/authorise
>> authorise

也许你试图使用错误的网址?

相关问题