javascript
什么是JSON? 以及jackson的使用
1、題外話
前后端分離時(shí)代
后端部署后端,提供接口,提供數(shù)據(jù)
json
前端獨(dú)立部署,負(fù)責(zé)渲染后端的數(shù)據(jù)
2、什么是JSON
JSON(JavaScript Object Notation, JS對象標(biāo)記)是一種輕量級的數(shù)據(jù)交換格式,目前使用特別廣泛。
●采用完全獨(dú)立于編程語言的文本格式來存儲和表示數(shù)據(jù)。
●簡潔和清晰的層次結(jié)構(gòu)使得JSON成為理想的數(shù)據(jù)交換語言。
●易于人閱讀和編寫,同時(shí)也易于機(jī)器解析和生成,并有效地提升網(wǎng)絡(luò)傳輸效率。
在JavaScript語言中,一切都是對象。因此,任何JavaScript 支持的類型都可以通過JSON來表示,例如字符串、數(shù)字、對象、數(shù)組等。看看他的要求和語法格式:
●對象表示為鍵值對,數(shù)據(jù)由逗號分隔
●花括號保存對象
●方括號保存數(shù)組
JSON鍵值對是用來保存JavaScript對象的一種方式,和JavaScript對象的寫法也大同小異,鍵/值對組合中的鍵名寫在前面并用雙引號""包裏,使用冒號:分隔,然后緊接著值:
{“name”: “QinJiang”}
{“age”: “3” }
{“sex”: “男”}
●JSON是JavaScript對象的字符串表示法,它使用文本表示一個(gè)JS對象的信息,本質(zhì)是一個(gè)字符串。
var obj = {a: ‘Hello’, b: ‘World’}; //這是一個(gè)對象,注意鍵名也是可以使用引號包裹的
var json = ‘{“a”: “Hello", “b”: “World”}’; //這是一個(gè)JSON 字符串,本質(zhì)是:一個(gè)字符串
JSON和JavaScript對象互轉(zhuǎn)
●要實(shí)現(xiàn)從JSON字符串轉(zhuǎn)換為JavaScript對象,使用JSON.parse()方法:
var obj = JSON.parse(’{“a”: “He1lo”,“b”: “World”}’);
//結(jié)果是{a: ‘Hello’,b: ‘World’}
●要實(shí)現(xiàn)從JavaScript對象轉(zhuǎn)換為JSON字符串,使用JSON.stringify() 方法:
var json = JSON.stringify({a: ‘Hello’, b: ‘World’});
//結(jié)果是’{“a”: “Hello”, "b”: “World”}
3、Controller返回JSON數(shù)據(jù)
3.1 jackson的使用
●Jackson應(yīng)該是目前比較好的json解析工具了
●當(dāng)然工具不止這一個(gè),比如還有阿里巴巴的fastjson等等。
●使用Jackson,需要導(dǎo)入它的jar包;
(1)在pom.xml中導(dǎo)入它的依賴
<dependencies><dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId><version>2.11.4</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.16.10</version></dependency></dependencies>(2)配置web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"version="5.0"><!--1 配置DispatcherServlet,這個(gè)是SpringMVC的核心:請求分發(fā)器,前端控制器--><servlet><servlet-name>springmvc</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><!--關(guān)聯(lián)一個(gè)spring的配置文件: [servlet-name]-servlet.xmL--><init-param><param-name>contextConfigLocation</param-name><param-value>classpath:springmvc-servlet.xml</param-value></init-param><load-on-startup>1</load-on-startup></servlet><!--/匹配所有的請求: (不包括.jsp) --><!--/*匹配所有的請求; (包括.jsp) --><servlet-mapping><servlet-name>springmvc</servlet-name><url-pattern>/</url-pattern></servlet-mapping><!--2.配置SpringMVC的亂碼過濾--><filter><filter-name>encoding</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>utf-8</param-value></init-param></filter><filter-mapping><filter-name>encoding</filter-name><url-pattern>/*</url-pattern></filter-mapping></web-app>(3)新建并配置關(guān)聯(lián)的springmvc-servlet.xml文件
<?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:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttps://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/mvchttps://www.springframework.org/schema/mvc/spring-mvc.xsd"><!--自動掃描指定的包,下面所有注解類交給IOC容器管理--><context:component-scan base-package="com.kuang.controller"/><mvc:default-servlet-handler/><mvc:annotation-driven /><!-- 視圖解析器--><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"id="internalResourceViewResolver" ><property name="prefix" value="/WEB-INF/jsp/" /><property name="suffix" value=".jsp" /></bean> </beans>(4)我們隨便編寫一個(gè)User的實(shí)體類,然后我們?nèi)ゾ帉懳覀兊臏y試Controller
package com.kuang.pojo;import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor;@Data //等同于getter and Setter @AllArgsConstructor //生成帶參構(gòu)造器 @NoArgsConstructor //生成無參構(gòu)造器 public class User {private int id;private String name;private int age; }(5)測試Controller類
下述代碼返回的是一個(gè)user對象的字符串格式。User( id=3, name=??1?,age= 19)
package com.kuang.controller;import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.kuang.pojo.User; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody;@Controller public class UserController {@RequestMapping("/j1")@ResponseBody //他就不會走視圖解析器,會直接返回一個(gè)字符串public String json1() {//創(chuàng)建一個(gè)對象User user = new User(3,"秦疆1號",19);return user.toString();} }下述代碼返回的則是一個(gè)Json格式{“id”:3,“name”:"??1?",“age”:19}
package com.kuang.controller;import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.kuang.pojo.User; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class UserController {@RequestMapping("/j1")@ResponseBody //他就不會走視圖解析器,會直接返回一個(gè)字符串public String json1() throws JsonProcessingException {//jackson,ObjectMapperObjectMapper mapper = new ObjectMapper();//創(chuàng)建一個(gè)對象User user = new User(3,"秦疆1號",19);String str = mapper.writeValueAsString(user);return str;//return user.toString();} }(6)HTTP Status 500 - Servlet.init() for servlet springmvc threw exception
type :Exception report
message :Servlet.init() for servlet springmvc threw exception
description: The server encountered an internal error that prevented it from fulfilling this request.
試試關(guān)于java.lang.NoClassDefFoundError: com/fasterxml/jackson/core/JsonProcessingException解決方法
以及記 Idea lib導(dǎo)包 ,500 錯(cuò)誤_波拿巴的博客-CSDN博客
我是根據(jù)第二篇博文解決的,我修改了pom.xml中的依賴為
然后重新在 lib下加入,好了之后再啟動的tomcat就可以了
(7)發(fā)現(xiàn)出現(xiàn)了亂碼問題
亂碼是因?yàn)?#xff0c;它只是將字符串輸出到當(dāng)前頁面,沒有通過向前端發(fā)送請求,也沒有過視圖解析器,自然也就沒有走srpingmvc配置文件中的亂碼過濾步驟。
我們需要設(shè)置一下他的編碼格式為utf-8, 以及它返回的類型;
通過**@ RequestMaping的produces屬性**來實(shí)現(xiàn),修改下代碼
結(jié)果:
上一種方法比較麻煩,如果項(xiàng)目中有許多請求則每一個(gè)都要添加, 可以通過Spring配置統(tǒng)一指定,這樣就不用每次都去處理了!
在springmvc的配置文件上添加一段消息StringHttpMessageConverter轉(zhuǎn)換配置!
重啟一下再看效果就對了
(8)返回集合
//返回一個(gè)集合@RequestMapping("/j2")public String json2() throws JsonProcessingException {ObjectMapper mapper = new ObjectMapper();ArrayList<Object> list = new ArrayList<>();User user1 = new User(3,"秦疆1號",19);User user2 = new User(3,"秦疆1號",19);User user3 = new User(3,"秦疆1號",19);User user4 = new User(3,"秦疆1號",19);list.add(user1);list.add(user2);list.add(user3);list.add(user4);String str = mapper.writeValueAsString(list);return str;}效果:
(9)返回時(shí)間戳
@RequestMapping("/j3")public String json3() throws JsonProcessingException {ObjectMapper mapper = new ObjectMapper();// objectMapper, 時(shí)間解析后的默認(rèn)格式為: Timestamp(時(shí)間戳)Date date = new Date();return mapper.writeValueAsString(date);} @RequestMapping("/j3")public String json3() throws JsonProcessingException {ObjectMapper mapper = new ObjectMapper();// objectMapper, 時(shí)間解析后的默認(rèn)格式為: Timestamp(時(shí)間戳)Date date = new Date();//自定義日期格式SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss" ) ;return mapper.writeValueAsString(sdf.format(date));} @RequestMapping("/j3")public String json3() throws JsonProcessingException {ObjectMapper mapper = new ObjectMapper();// objectMapper, 時(shí)間解析后的默認(rèn)格式為: Timestamp(時(shí)間戳)//不使用時(shí)間戳的方式,mapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS,false);//自定義日期格式SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss" ) ;mapper.setDateFormat(sdf);Date date = new Date();return mapper.writeValueAsString(date);}抽取為JSON工具類
public class JsonUtils {public static String getJson(Object object){return getJson(object,"yyyy-MM-dd HH:mm:ss");}public static String getJson(Object object, String dateFormat){ObjectMapper mapper = new ObjectMapper();//不使用時(shí)間戳的方式,mapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS,false);//自定義日期格式SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss" ) ;mapper.setDateFormat(sdf);try {return mapper.writeValueAsString(object);} catch (JsonProcessingException e) {e.printStackTrace();}return null;}總結(jié)
以上是生活随笔為你收集整理的什么是JSON? 以及jackson的使用的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 1002 写出这个数 (20分)-Jav
- 下一篇: IDEA写sql语句的时候没有提示信息的