您好,登錄后才能下訂單哦!
本篇內容介紹了“SpringMVC @RequestBody自動轉json Http415錯誤如何解決”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
項目中想用@RequestBody直接接收json串轉成對象
網上查了使用方法,看著非常簡單,不過經過測試很快發現頁面直接報415錯誤。
<body> <h2>HTTP Status 415 - </h2> <HR size="1" noshade="noshade"> <p> <b>type</b> Status report </p> <p> <b>message</b> <u></u> </p> <p> <b>description</b> <u>The server refused this request because the request entity is in a format not supported by the requested resource for the requested method.</u> </p> <HR size="1" noshade="noshade"> <h4>Apache Tomcat/6.0.41</h4> </body>
經過一通查,多半的解決方法實說header里的 Content-Type 一定 application/json
但是問題依然沒有解決。
最后在《Spring in Action》里找到一個信息
有兩個前提條件:
The request’sContent-Typeheader must be set toapplication/json.
The JacksonJSONlibrary must be available on the application’s classpath.
我滿足了第一個,所以在classpath中添加了一個jar。問題解決了。
<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.5.3</version> </dependency>
所以如果大家遇到了同樣的問題,可以先排除一下這兩個因素。
還有一種情況,在以上兩個條件都滿足的情況下,還是報同樣的錯誤。
在springmvc的配置文件中必須有:
<!-- 默認的注解映射的支持 --> <mvc:annotation-driven />
如果沒有這個配置也是會報這個錯的!
為什么會引入jackson-databind包呢,因為默認的配置會用到:
com.fasterxml.jackson.databind.ObjectMapper
<mvc:message-converters> <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"> <property name="objectMapper"> <bean class="com.fasterxml.jackson.databind.ObjectMapper"> <property name="dateFormat"> <bean class="java.text.SimpleDateFormat"> <constructor-arg type="java.lang.String" value="yyyy-MM-dd HH:mm:ss" /> </bean> </property> </bean> </property> </bean> </mvc:message-converters>
Spring mvc是一個非常輕量的mvc框架,注解可以大大減少配置,讓請求的攔截變得比較簡單。這次記錄下@RequestBody 注解接收參數尤其是數組參數的用法。
關于容器的配置不再多說,這里寫出spring-servlet.xml的sechme:
<?xml version="1.0" encoding="UTF-8" ?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd"> <!-- 掃描包注解 --> <context:component-scan base-package="xxxx"></context:component-scan> <!-- mvc注解功能啟動 --> <mvc:annotation-driven /> </beans>
只要對應包名下面的添加注解即可掃描到對應的控制器,一般采用@Controller
RequestBody接收基本類型
@Controller public class TestController { // url請求攔截 @RequestMapping("test/test.do") @ResponseBody // 返回參數為JSON public void test(@RequestBody String name) { System.out.println("getParams : " + name); }![](https://img-blog.csdn.net/20161114115809292) }
@RequestBody只要接收POST請求Body里的數據。
這樣發送請求,即可在java控制臺中打印:
getParams : {"name":"micro"}
@RequestBody接收基本數組
然后我們接收基本類型數組:
@RequestMapping("test/test.do") @ResponseBody public void test(@RequestBody List<String> nameList) { System.out.println("getParams : " + nameList); }
這樣即可獲取到參數,不要body里寫成了{“nameList”:[“name1”,“name2”]}這樣會拋出異常。
@RequestBody是對應的POST請求的body,body即是獲取的參數,如果想通過參數去獲取,則要使用@RequestParams 注解:
@RequestMapping("test/test.do") @ResponseBody public void test(@RequestParam("name") String name) { System.out.println("getParams : " + name); }
注意是GET請求,參數直接放到URL后面,這樣就可以使用@RequestParams獲取到對應參數名的參數值。
如果是復雜的對象。
@RequestBody的使用。
定義model:
class Person { private Long id; private String name; // setter getter }
@RequestBody接收復雜對象
接收參數的方式
@RequestMapping("test/test.do") @ResponseBody public void test(@RequestBody Person person) { System.out.println("getParams : " + person.getId() + " ," + person.getName()); }
即可獲取到參數,body里的參數會自動匹配到person的屬性并賦值。
注意名字要與對象的屬性變量名一致。否則獲取不到參數,例如這里就不能在body里寫成{“i”:1,“name”:“micro”},這樣獲取到person的id為null。
@RequestBody接收復雜對象數組
如果是復雜對象數組:
@RequestMapping("test/test.do") @ResponseBody public void test(@RequestBody List<Person> personList) { for (Person p : personList) { System.out.println(p.getId() + " ," + p.getName()); } }
請求方式如下,注意body里的格式是[]數組。
控制臺打印:
1 ,micro
2 ,micro2
“SpringMVC @RequestBody自動轉json Http415錯誤如何解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。