Spring-boot返回Json格式数据

Spring-boot返回Json格式数据


Spring-boot返回json用到的注解为@RestController

  • 新建一个maven项目,编写pom.xml文件

		org.springframework.boot
		spring-boot-starter-parent
		1.3.3.RELEASE
	

	
		
			org.springframework.boot
			spring-boot-starter-web
		
	

	
		
			
				org.springframework.boot
				spring-boot-maven-plugin 
			
		
	
  • 编写App.class(启动类)
Spring-boot返回Json格式数据_第1张图片
  • 编写controller
Spring-boot返回Json格式数据_第2张图片
  • 编写Person实体类 
  • Spring-boot返回Json格式数据_第3张图片

  • 启动app.class

你可能感兴趣的:(spring-boot)