Jackson和Fastjson使用
阿新 • • 發佈:2022-05-09
Jackson應該是目前比較好的json解析工具了
當然工具不止這一個,比如還有阿里巴巴的fastjson等等
我們這裡使用jackson,使用它需要匯入它的jar包
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.0</version>
</dependency>
配置SpringMVC,
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<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>
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/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!--自動掃描包,讓指定包下的註解生效,有IOC容器統一管理-->
<context:component-scan base-package="com.luo.controller"/>
<!--檢視解析器:DispatcherServlet給他的ModelAndView-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="internalResourceViewResolver">
<!--字首-->
<property name="prefix" value="/WEB-INF/jsp/"/>
<!--字尾-->
<property name="suffix" value=".jsp"/>
</bean>
</beans>
再隨便編寫一個User實體類,然後去編寫測試Controller
controller:(@ResponseBody配合@Controller使用,可直接使用@RestController,其下的方法都不走檢視解析器)
測試:
接下來改動一下controller,使用ObjectMapper物件
測試:
發現出現亂碼問題,需要設定一下編碼格式為utf-8,以及返回型別
1.可以通過@RequestMapping的produces屬性實現,修改程式碼:
測試:
2.亂碼統一解決,可以通過Spring配置統一制定,在SpringMVC的配置檔案(springmvc-servl.xml)上新增一段訊息StringHttpMessageConverter轉換配置
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<constructor-arg value="utf-8"/>
</bean>
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
<property name="failOnEmptyBeans" value="false"/>
</bean>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
測試:
我們再編寫一個集合測試:
測試:
我們再來一個時間物件
測試:
1970年1月1日到當前日期的毫秒數
jackson預設把時間轉換成timestamps形式
我們通過一些方法將其轉換成我們看的懂的時間:
1.Java方法:
測試:
2.ObjectMapper格式化輸出,不使用時間戳方式
我們編寫一個工具類封裝程式碼:
那麼我們的controller程式碼:
================
Fastjson
導包
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.60</version>
</dependency>