码迷,mamicode.com
首页 > Web开发 > 详细

@JsonView

时间:2019-06-02 01:36:16      阅读:420      评论:0      收藏:0      [点我收藏+]

标签:content   username   void   dem   tar   json   接口   free   方法   

@JsonView是Spring中的一个注解,用于在不同的请求中返回不同的视图。例如,在请求/users中会返回一个包含基本用户信息的List,此时不应该把所有的用户密码等详情返回出来。但是,当请求某一个用户的详情/user/{id:\+d}时候,则需要返回该用户的所有信息。此时,可以通过JsonView注解来表明如何在不同的请求中返回什么样的视图。

JsonView使用步骤

S1:使用接口来声明多个视图

S2:在返回值对象的get方法上指定视图

S3:在Controller方法上指定视图

一个完整的实例

  1. 返回值类:User类
public class User {

// 使用接口来声明多个视图 
    public interface UserSimpleView{};
    public interface UserDetailView extends UserSimpleView{};

    private Integer id;
    private int age;
    private String userName;
    private String password;

//在返回值对象的get方法上指定视图  
    @JsonView(UserSimpleView.class)
    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    @JsonView(UserSimpleView.class)
    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @JsonView(UserSimpleView.class)
    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }
    @JsonView(UserDetailView.class)
    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}
  1. Controller类
@RestController
@RequestMapping(value = "/rest")
public class DemoController {
//在Controller方法上指定视图
    @GetMapping("/user")
    @JsonView(User.UserSimpleView.class)
    public User getUser(){
        User user = new User();
        user.setId(1);
        user.setUserName("liyubo");
        user.setAge(25);
        user.setPassword("yyYYuswoYMOS==s");

        return user;
    }
}
 

@JsonView

标签:content   username   void   dem   tar   json   接口   free   方法   

原文地址:https://www.cnblogs.com/cuiqq/p/10961495.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!