Spring MVC - 生成 JSON 示例



以下示例演示如何使用 Spring Web MVC 框架生成 JSON。首先,我们需要一个可用的 Eclipse IDE,并考虑以下步骤来使用 Spring Web 框架开发基于动态表单的 Web 应用程序:

步骤 描述
1 创建一个名为 TestWeb 的项目,包名为 com.tutorialspoint,如 Spring MVC - Hello World 章节中所述。
2 com.tutorialspoint 包下创建 Java 类 UserUserController
3 从 Maven 仓库页面下载 Jackson 库 Jackson Core、Jackson Databind 和 Jackson Annotations。将它们放入你的 CLASSPATH。
4 最后一步是创建所有源文件和配置文件的内容,并导出应用程序,如下所述。

User.java

package com.tutorialspoint;

public class User {
   private String name;
   private int id;
   public String getName() {
      return name;
   }  
   public void setName(String name) {
      this.name = name;
   }
   public int getId() {
      return id;
   }   
   public void setId(int id) {
      this.id = id;
   }	
}

UserController.java

package com.tutorialspoint;

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;

@Controller
@RequestMapping("/user")
public class UserController {
	
   @RequestMapping(value="{name}", method = RequestMethod.GET)
   public @ResponseBody User getUser(@PathVariable String name) {

      User user = new User();

      user.setName(name);
      user.setId(1);
      return user;
   }
}

TestWeb-servlet.xml

<beans xmlns = http://www.springframework.org/schema/beans"
   xmlns:context = http://www.springframework.org/schema/context"   
   xmlns:xsi = http://www.w3.org/2001/XMLSchema-instance"
   xmlns:mvc = http://www.springframework.org/schema/mvc"
   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.tutorialspoint" />
   <mvc:annotation-driven />
</beans>

在这里,我们创建了一个简单的 POJO User,在 UserController 中我们返回了 User 对象。Spring 会根据 RequestMapping 和 classpath 中存在的 Jackson jar 自动处理 JSON 转换。

创建完源文件和配置文件后,导出你的应用程序。右键单击你的应用程序,使用 导出 → WAR 文件 选项,并将你的 TestWeb.war 文件保存到 Tomcat 的 webapps 文件夹中。

现在,启动 Tomcat 服务器,并确保你可以使用标准浏览器访问 webapps 文件夹中的其他网页。尝试访问 URL – https://127.0.0.1:8080/TestWeb/mahesh,你将看到以下屏幕。

Spring JSON Generation
广告