使用jackson返回json數(shù)據(jù):

1、SpringMVC如何返回json數(shù)據(jù)

1.1谴忧、添加jar包

 <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.9.5</version>
  </dependency>

1.2、配置spring文件角虫,添加mvc命名空間和約束等

 xmlns:mvc="http://www.springframework.org/schema/mvc"

  http://www.springframework.org/schema/mvc
  http://www.springframework.org/schema/mvc/spring-mvc.xsd
 <mvc:annotation-driven/>

1.3沾谓、方法上添加@ResponseBody

 @ResponseBody

2、例子:

2.1戳鹅、配置pom.xml

 <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <!-- Spring的核心工具包-->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <!--在基礎(chǔ)IOC功能上提供擴(kuò)展服務(wù)均驶,還提供許多企業(yè)級服務(wù)的支持,有郵件服務(wù)枫虏、任務(wù)調(diào)度妇穴、遠(yuǎn)程訪問爬虱、緩存以及多種視圖層框架的支持-->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <!-- Spring IOC的基礎(chǔ)實現(xiàn),包含訪問配置文件腾它、創(chuàng)建和管理bean等 -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <!-- Spring context的擴(kuò)展支持跑筝,用于MVC方面 -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context-support</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <!-- Spring表達(dá)式語言 -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-expression</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <!--springAop開發(fā)必須加入的包-->
    <dependency>
      <groupId>aopalliance</groupId>
      <artifactId>aopalliance</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.8.13</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aspects</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
      <version>5.0.8.RELEASE</version>
    </dependency>

    <!--jackson返回json-->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.9.5</version>
    </dependency>
  </dependencies>

2.2、配置spring.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:p="http://www.springframework.org/schema/p"
       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">

    <!--掃描controller-->
    <context:component-scan base-package="com"></context:component-scan>
    <!--視圖解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!--jsp所在位置-->
        <property name="prefix" value="/"></property>
        <!--jsp文件后綴名-->
        <property name="suffix" value=".jsp"></property>
    </bean>

    <mvc:annotation-driven /> <!--注解驅(qū)動-->
</beans>

2.3瞒滴、配置web.xml

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>

  <servlet>
    <servlet-name>springMvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <!--加載spring配置文件曲梗,原來是通過 ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");-->
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:spring.xml</param-value>
    </init-param>
  </servlet>
  <servlet-mapping>
    <servlet-name>springMvc</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

  <!--處理post亂碼-->
  <filter>
    <filter-name>characterEncodingFilter</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>characterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

</web-app>

2.4、添加User實體類

package com.fan.entity;

import java.util.Arrays;
import java.util.Date;

public class User {
    private String username;
    private String password;
    private int[] box;
    private Date date;

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public int[] getBox() {
        return box;
    }

    public void setBox(int[] box) {
        this.box = box;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

    @Override
    public String toString() {
        return "User{" +
                "username='" + username + '\'' +
                ", password='" + password + '\'' +
                ", box=" + Arrays.toString(box) +
                ", date=" + date +
                '}';
    }
}

2.5妓忍、 TestJsonController測試類

@Controller
public class TestJsonController {

     //http://localhost:8080/testjson1
    @RequestMapping("/testjson1")
    @ResponseBody //返回json字符串注解
    public User test(){
        User user=new User();
        user.setUsername("malijuan");
        user.setPassword("123");
        user.setBox(new int[]{1,2,3});
        user.setDate(new Date());
        return user;
    }

    //http://localhost:8080/testjson2
    @RequestMapping("/testjson2")
    @ResponseBody  //返回json字符串注解
    public List test2(){
        User user=new User();
        List list=new ArrayList();
        for(int i=0;i<5;i++){
            user.setUsername("malijuan");
            user.setPassword("123");
            user.setBox(new int[]{1,2,3});
            user.setDate(new Date());
            list.add(user);
        }
        return list;
    }
}

2.6虏两、啟動tomcat測試

測試1

測試2
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市单默,隨后出現(xiàn)的幾起案子碘举,更是在濱河造成了極大的恐慌,老刑警劉巖搁廓,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件引颈,死亡現(xiàn)場離奇詭異,居然都是意外死亡境蜕,警方通過查閱死者的電腦和手機(jī)蝙场,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來粱年,“玉大人售滤,你說我怎么就攤上這事√ㄊ” “怎么了完箩?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長拉队。 經(jīng)常有香客問我弊知,道長,這世上最難降的妖魔是什么粱快? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任秩彤,我火速辦了婚禮,結(jié)果婚禮上事哭,老公的妹妹穿的比我還像新娘漫雷。我一直安慰自己,他們只是感情好鳍咱,可當(dāng)我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布降盹。 她就那樣靜靜地躺著,像睡著了一般谤辜。 火紅的嫁衣襯著肌膚如雪蓄坏。 梳的紋絲不亂的頭發(fā)上仅胞,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天,我揣著相機(jī)與錄音剑辫,去河邊找鬼干旧。 笑死,一個胖子當(dāng)著我的面吹牛妹蔽,可吹牛的內(nèi)容都是我干的椎眯。 我是一名探鬼主播,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼胳岂,長吁一口氣:“原來是場噩夢啊……” “哼编整!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起乳丰,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤掌测,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后产园,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體汞斧,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年什燕,在試婚紗的時候發(fā)現(xiàn)自己被綠了粘勒。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡屎即,死狀恐怖庙睡,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情技俐,我是刑警寧澤乘陪,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站雕擂,受9級特大地震影響啡邑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜捂刺,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一谣拣、第九天 我趴在偏房一處隱蔽的房頂上張望募寨。 院中可真熱鬧族展,春花似錦、人聲如沸拔鹰。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽列肢。三九已至恰画,卻和暖如春宾茂,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背拴还。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工跨晴, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人片林。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓端盆,卻偏偏與公主長得像,于是被迫代替她去往敵國和親费封。 傳聞我的和親對象是個殘疾皇子焕妙,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,543評論 2 349

推薦閱讀更多精彩內(nèi)容