In this tutorial, we show you how to output JSON data in Spring MVC framework.
Technologies used :
- Spring 3.2.2.RELEASE
- Jackson 1.9.10
- JDK 1.6
- Eclipse 3.6
- Maven 3
P.S In Spring 3, to output JSON data, just puts Jackson library in the project classpath.
1. Project Dependencies
Get Jackson and Spring dependencies.
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.mkyong.common</groupId> <artifactId>SpringMVC</artifactId> <packaging>war</packaging> <version>1.0-SNAPSHOT</version> <name>SpringMVC Json Webapp</name> <url>http://maven.apache.org</url> <properties> <spring.version>3.2.2.RELEASE</spring.version> <jackson.version>1.9.10</jackson.version> <jdk.version>1.6</jdk.version> </properties> <dependencies> <!-- Spring 3 dependencies --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <!-- Jackson JSON Mapper --> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>${jackson.version}</version> </dependency> </dependencies> <build> <finalName>SpringMVC</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>false</downloadJavadocs> <wtpversion>2.0</wtpversion> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> </plugins> </build> </project>
2. Model
A simple POJO, later output this object as formatted JSON data.
package com.mkyong.common.model; public class Shop { String name; String staffName[]; //getter and setter methods }
3. Controller
Add @ResponseBody
as return value. Wen Spring sees
- Jackson library is existed in the project classpath
- The
mvc:annotation-driven
is enabled - Return method annotated with @ResponseBody
Spring will handle the JSON conversion automatically.
JSONController.java
package com.mkyong.common.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import com.mkyong.common.model.Shop; @Controller @RequestMapping("/kfc/brands") public class JSONController { @RequestMapping(value="{name}", method = RequestMethod.GET) public @ResponseBody Shop getShopInJSON(@PathVariable String name) { Shop shop = new Shop(); shop.setName(name); shop.setStaffName(new String[]{"mkyong1", "mkyong2"}); return shop; } }
4. mvc:annotation-driven
Enable mvc:annotation-driven
in your Spring configuration XML file.
mvc-dispatcher-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> <context:component-scan base-package="com.mkyong.common.controller" /> <mvc:annotation-driven /> </beans>
5. Demo
URL : http://localhost:8080/SpringMVC/rest/kfc/brands/kfc-kampar
Download Source Code
Download it – SpringMVC-Json-Example.zip (21 KB)
相关推荐
在本文中,我们将深入探讨Spring 3 MVC框架中的ContentNegotiatingViewResolver组件,这是一个用于内容协商的关键工具,它使得应用程序能够根据用户代理或请求参数返回适当格式的响应。...
在本文中,我们将深入探讨“Spring MVC JSON学习”这一主题,重点关注如何在Spring MVC应用中处理JSON数据。JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,因其简洁性和易读性而被广泛应用。 ...
在Spring MVC框架中,处理JSON数据是Web应用开发中的常见任务。JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,它使得前后端数据交互变得更加简单和直观。本篇文章将详细讲解在Spring MVC中如何...
标题中的“Spring MVC – Easy REST-Based JSON Services with @ResponseBody”是指使用Spring MVC框架构建基于REST的JSON服务,并通过使用`@ResponseBody`注解来简化这一过程。REST(Representational State ...
Spring3 MVC 是一款基于Java的轻量级Web应用框架,它是Spring框架的重要组成部分,主要用于构建Web应用程序的模型-视图-控制器(MVC)结构。这个"最新Spring3 MVC 示例 demo程序"旨在帮助开发者理解并掌握Spring 3的...
3. **配置Spring MVC**:在Spring的配置文件中,配置JSON-RPC处理器,将其映射到特定的URL路径。 4. **客户端调用**:在客户端,使用AJAX或者其他JSON-RPC客户端库,向服务器发送请求并处理返回的结果。 例如,一个...
完成依赖添加后,Spring MVC会自动识别并使用Jackson库进行JSON转换。在控制器方法中,你可以直接返回一个Java对象,Spring会将其转换成JSON响应给客户端。例如: ```java @GetMapping("/example") public @...
Spring3MVC-REST-HelloWorld 是一个基础的示例,用于展示如何在Spring框架的MVC模块中实现RESTful Web服务。这个实例是初学者理解Spring MVC与REST结合使用的理想起点。REST(Representational State Transfer)是一...
3. **生成服务端点**:使用Spring的`WebServiceGatewaySupport`或`WebServiceTemplate`类作为基础,创建一个服务处理器类,该类将处理来自客户端的请求,并调用业务逻辑。 4. **配置Spring MVC**:在Spring MVC的...
在Spring MVC中,可以使用`@ResponseBody`注解将方法的返回值直接转换为JSON格式,发送给客户端。配合Jackson或Gson等库,可以轻松地进行JSON序列化和反序列化。 总的来说,这个项目展示了Spring MVC在实际应用中...
3. **处理JSON视图**:Spring MVC提供了一个`@ResponseBody`注解,可以将Controller方法的返回值直接转换为JSON格式,发送到客户端。同时,我们还可以使用`@RequestBody`注解接收前端发送的JSON数据。 4. **视图...
3. 主程序类:创建一个带有`@SpringBootApplication`注解的类,这个注解包含了`@SpringBootConfiguration`、`@EnableAutoConfiguration`和`@ComponentScan`,它们一起帮助Spring Boot启动并配置应用程序。...
在IT行业中,Spring MVC是一个广泛使用的Java Web框架,它为构建高效、模块化的Web应用程序提供了强大的支持。在本示例中,“mvc-ajax.rar_spring mvc”是一个包含使用Ajax技术与Spring MVC集成实现账号添加功能的...
在Spring MVC框架中,异常处理是一项关键任务,它确保了应用程序在遇到错误或异常时能够优雅地响应。本文将深入探讨Spring MVC中的异常处理机制,包括如何配置、自定义异常处理器以及异常转换策略。 首先,Spring ...
Spring作为核心框架提供依赖注入和整体架构支持,而Spring MVC作为其Web模块,专门用于构建MVC(模型-视图-控制器)风格的Web应用。 首先,我们需要理解REST(Representational State Transfer)架构风格,它提倡...
Spring Boot & Spring MVC 异常处理的N种方法 参考文档: Spring Boot 1.5.4.RELEASE Spring framework 4.3.9.RELEASE 默认行为 根据Spring Boot官方文档的说法: For machine clients it will produce a JSON ...
Spring MVC 是一款强大的Java Web开发框架,用于构建可维护、高性能的Web应用程序。它是Spring生态体系中的重要组成部分,尤其在企业级应用开发中被广泛使用。本教程将深入讲解Spring MVC的基础知识,包括其基本配置...
**Spring MVC 入门教程** Spring MVC 是 Spring 框架的一个模块,专门用于构建 Web 应用程序。它提供了一种模型-视图-控制器(MVC)架构,简化了开发过程,使得开发者可以专注于业务逻辑而不必过于关注底层细节。在...
### Spring Web 3.0 MVC 注解详解及实例 #### 一、概述 Spring Web MVC 是 Spring Framework 的一部分,提供了一种强大而灵活的方式来构建基于 Web 的应用。随着 Spring 3.0 的发布,框架引入了一系列重要的改进,...
2. **配置Jsonrpc4j Server:** 创建一个配置类,使用`@Configuration`和`@EnableWebMvc`注解,以便Spring MVC能够处理Jsonrpc4j的请求。接着,创建一个`@Bean`来实例化`JsonRpcServer`,并将你的服务提供者注册到...