คุณถูกต้องพารามิเตอร์ที่มีคำอธิบายประกอบ @RequestBody คาดว่าจะเก็บเนื้อหาทั้งหมดของคำขอและเชื่อมโยงกับวัตถุชิ้นเดียวดังนั้นคุณจะต้องใช้ตัวเลือกของคุณเป็นหลัก
หากคุณต้องการแนวทางของคุณอย่างแท้จริงมีการใช้งานแบบกำหนดเองที่คุณสามารถทำได้:
พูดว่านี่คือ json ของคุณ:
{
"str1": "test one",
"str2": "two test"
}
และคุณต้องการผูกมันเข้ากับพารามิเตอร์สองตัวที่นี่:
@RequestMapping(value = "/Test", method = RequestMethod.POST)
public boolean getTest(String str1, String str2)
ก่อนอื่นให้กำหนดคำอธิบายประกอบที่กำหนดเอง@JsonArg
โดยใช้เส้นทาง JSON เช่นเส้นทางไปยังข้อมูลที่คุณต้องการ:
public boolean getTest(@JsonArg("/str1") String str1, @JsonArg("/str2") String str2)
ตอนนี้เขียน Custom HandlerMethodArgumentResolverซึ่งใช้JsonPath ที่กำหนดไว้ข้างต้นเพื่อแก้ไขอาร์กิวเมนต์จริง:
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.io.IOUtils;
import org.springframework.core.MethodParameter;
import org.springframework.http.server.ServletServerHttpRequest;
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.jayway.jsonpath.JsonPath;
public class JsonPathArgumentResolver implements HandlerMethodArgumentResolver{
private static final String JSONBODYATTRIBUTE = "JSON_REQUEST_BODY";
@Override
public boolean supportsParameter(MethodParameter parameter) {
return parameter.hasParameterAnnotation(JsonArg.class);
}
@Override
public Object resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory) throws Exception {
String body = getRequestBody(webRequest);
String val = JsonPath.read(body, parameter.getMethodAnnotation(JsonArg.class).value());
return val;
}
private String getRequestBody(NativeWebRequest webRequest){
HttpServletRequest servletRequest = webRequest.getNativeRequest(HttpServletRequest.class);
String jsonBody = (String) servletRequest.getAttribute(JSONBODYATTRIBUTE);
if (jsonBody==null){
try {
String body = IOUtils.toString(servletRequest.getInputStream());
servletRequest.setAttribute(JSONBODYATTRIBUTE, body);
return body;
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return "";
}
}
ตอนนี้เพียงลงทะเบียนสิ่งนี้กับ Spring MVC มีส่วนเกี่ยวข้องเล็กน้อย แต่ควรใช้งานได้อย่างหมดจด