解決SpringBoot在后臺(tái)接收前臺(tái)傳遞對(duì)象方式的問題
前臺(tái)傳遞對(duì)象,不管是通過(guò)ajax請(qǐng)求方式,還是axios請(qǐng)求方式。后臺(tái)應(yīng)該怎么接收對(duì)象處理呢?
比如前臺(tái)傳遞
ajax方式:
$.ajax({ url: '后臺(tái)的方式', async: false, type: 'POST', dataType : 'json', data: JSON.stringify(formParamObj), contentType:’application/json;charset=utf-8’, success: function (data) { if (data.isSuccess) { //成功處理方式 } else if ('403' == data) { //失敗方式處理 } }});
axios方式:
let params = { key1:value1, key2:value2}axios.post/get(url,params).then(res=>{ //處理結(jié)果})解決方案:
在方法的參數(shù)前面添加注解@RequestBody就可以解決
@PostMapper('/xxx/xxxx')public List getProgramList(@RequestBody Program program){ System.out.println(program); return null;}
落地測(cè)試:
可以通過(guò)postman工具進(jìn)行測(cè)試
補(bǔ)充:關(guān)于SpringBoot自定義注解(解決post接收String參數(shù) null(前臺(tái)傳遞json格式))
今天遇到個(gè)問題,接口方面的,請(qǐng)求參數(shù)如下圖為json格式(測(cè)試工具使用google的插件postman)
后臺(tái)用字符串去接收為null
解決方案有以下幾種1.使用實(shí)體接收(一個(gè)參數(shù),感覺沒必要)
2.使用map接收(參數(shù)不清晰,不想用)
3.自定義注解(本文采用)
第一步:
創(chuàng)建兩個(gè)類代碼如下:
package com.annotation;import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;@Target(ElementType.PARAMETER)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface RequestJson {String value();}
package com.annotation;import java.io.BufferedReader;import javax.servlet.http.HttpServletRequest;import org.springframework.core.MethodParameter;import org.springframework.web.bind.support.WebDataBinderFactory;import org.springframework.web.context.request.NativeWebRequest;import org.springframework.web.method.support.HandlerMethodArgumentResolver;import org.springframework.web.method.support.ModelAndViewContainer;import com.alibaba.fastjson.JSONObject;public class RequestJsonHandlerMethodArgumentResolver implements HandlerMethodArgumentResolver {@Overridepublic boolean supportsParameter(MethodParameter parameter) {return parameter.hasParameterAnnotation(RequestJson.class);}@Overridepublic Object resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer,NativeWebRequest webRequest, WebDataBinderFactory binderFactory) throws Exception {RequestJson requestJson = parameter.getParameterAnnotation(RequestJson.class);HttpServletRequest request = webRequest.getNativeRequest(HttpServletRequest.class);BufferedReader reader = request.getReader();StringBuilder sb = new StringBuilder();char[] buf = new char[1024];int rd;while ((rd = reader.read(buf)) != -1) {sb.append(buf, 0, rd);}JSONObject jsonObject = JSONObject.parseObject(sb.toString());String value = requestJson.value();return jsonObject.get(value);}}
第二步:?jiǎn)?dòng)類添加如下代碼
第三步:后臺(tái)請(qǐng)求(使用下圖方式接受就可以了)
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
相關(guān)文章:
1. js select支持手動(dòng)輸入功能實(shí)現(xiàn)代碼2. PHP橋接模式Bridge Pattern的優(yōu)點(diǎn)與實(shí)現(xiàn)過(guò)程3. asp.net core項(xiàng)目授權(quán)流程詳解4. html中的form不提交(排除)某些input 原創(chuàng)5. CSS3中Transition屬性詳解以及示例分享6. bootstrap select2 動(dòng)態(tài)從后臺(tái)Ajax動(dòng)態(tài)獲取數(shù)據(jù)的代碼7. vue使用moment如何將時(shí)間戳轉(zhuǎn)為標(biāo)準(zhǔn)日期時(shí)間格式8. 開發(fā)效率翻倍的Web API使用技巧9. jsp文件下載功能實(shí)現(xiàn)代碼10. ASP常用日期格式化函數(shù) FormatDate()
