日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

本文介紹了用Spring解碼車身參數(shù)的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

問題描述

我正在使用Spring為Slack App開發(fā)一個(gè)rest API后端。我能夠接收來自Slack的消息(斜杠命令),但我無法正確接收組件交互(按鈕單擊)。

official documentation表示:

您的操作URL將收到一個(gè)HTTP POST請求,其中包括一個(gè)負(fù)載正文參數(shù),該參數(shù)本身包含一個(gè)應(yīng)用程序/x-www-form-urlencode JSON字符串。

因此,我寫了以下@RestController

@RequestMapping(method = RequestMethod.POST, value = "/actions", headers = {"content-type=application/x-www-form-urlencoded"})
public ResponseEntity action(@RequestParam("payload") ActionController.Action action) {
    return ResponseEntity.status(HttpStatus.OK).build();
}

@JsonIgnoreProperties(ignoreUnknown = true)
class Action {

    @JsonProperty("type")
    private String type;

    public Action() {}

    public String getType() {
        return type;
    }

}

但是,我收到以下錯(cuò)誤:

Failed to convert request element: org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException: Failed to convert value of type 'java.lang.String' to required type 'controllers.ActionController$Action'; nested exception is java.lang.IllegalStateException: Cannot convert value of type 'java.lang.String' to required type 'controllers.ActionController$Action': no matching editors or conversion strategy found

這是什么意思,如何解決?

json

您會(huì)收到一個(gè)包含推薦答案內(nèi)容的字符串。您沒有收到JSON輸入,因?yàn)?code>application/x-www-form-urlencoded用作內(nèi)容類型,而不是application/json,如上所述:

您的操作URL將收到一個(gè)HTTP POST請求,包括有效負(fù)載
Body參數(shù),本身包含一個(gè)應(yīng)用程序/x-www-form-urlencode
JSON字符串。

因此將參數(shù)類型更改為String,并使用Jackson或任何JSON庫將String映射到Action類:

@RequestMapping(method = RequestMethod.POST, value = "/actions", headers = {"content-type=application/x-www-form-urlencoded"})
public ResponseEntity action(@RequestParam("payload") String actionJSON) {
    Action action = objectMapper.readValue(actionJSON, Action.class);? 
    return ResponseEntity.status(HttpStatus.OK).build();
}

正如pvpkiran建議的那樣,如果您可以直接在POST請求的主體中傳遞JSON字符串,而不是作為參數(shù)值,那么您可以將@RequestParam替換為@RequestBody,但情況似乎并非如此。
實(shí)際上,通過使用@RequestBody,請求的主體通過HttpMessageConverter傳遞以解析方法參數(shù)。

作為對您的評論的回應(yīng),Spring MVC并沒有提供一種非常簡單的方法來滿足您的需求:將字符串JSON映射到您的Action類。
但是,如果您真的需要自動(dòng)執(zhí)行此轉(zhuǎn)換,您可以使用the Spring MVC documentation中所述的冗長替代方法,例如ForMatters(我的重點(diǎn)是):

表示基于字符串的一些帶注釋的控制器方法參數(shù)
請求輸入?-?,例如@RequestParam@RequestHeader@PathVariable
@MatrixVariable,@CookieValue,如果
參數(shù)聲明為字符串以外的內(nèi)容。

對于這種情況,類型轉(zhuǎn)換將根據(jù)
已配置的轉(zhuǎn)換器。默認(rèn)情況下,簡單類型,如int、long
支持日期等。類型轉(zhuǎn)換可以通過
WebDataBinder,請參見DataBinder,或通過將ForMatters注冊到
FormattingConversionService,請參閱Spring字段格式設(shè)置。

通過為Action類創(chuàng)建一個(gè)格式化程序(FormatterRegistry子類),您可以將其添加到Spring Web配置as documented:

@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {

    @Override
    public void addFormatters(FormatterRegistry registry) {
        // ... add action formatter here
    }
}

并在參數(shù)聲明中使用它:

public ResponseEntity action(@RequestParam("payload") @Action Action actionJ) 
{...}

這篇關(guān)于用Spring解碼車身參數(shù)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,

分享到:
標(biāo)簽:Spring 參數(shù) 解碼 車身
用戶無頭像

網(wǎng)友整理

注冊時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定