Spring Boot + H2 + JPA项目的问题

时间:2019-08-31 18:22:56

标签: spring spring-boot jpa h2

这是我的User课:

@Data
@Entity
public class User {

    @Id @GeneratedValue Long userID;
    String eMail;
    String phoneNumber;
    String displayName;
    //File displayPicture;
    String firstName;
    String middleName;
    String lastName;
    ArrayList<ClassRoom>adminOf=new ArrayList<>();
    ArrayList<ClassRoom>memberOf=new ArrayList<>();
    @NotNull
    int rating;
    boolean isTeacher;
    ArrayList<Assignment>assignmentsToSubmit=new ArrayList<>();
    ArrayList<Assignment>assignmentsSubmitted=new ArrayList<>();

    @OneToOne(fetch = FetchType.LAZY,targetEntity = LoginCredential.class)
    @JoinColumn(name = "userID",referencedColumnName = "userID")
    private LoginCredential loginCredential;

    User() {
    }
}

这是UserController类的控制器:

@RestController
class UserController {

    private final UserRepository repository;
    UserController(UserRepository repository) {
        this.repository = repository;
    }

    @GetMapping("/user/{id}")
    User one(@PathVariable Long id) {
        return repository.findById(id).orElseThrow(() -> new UserNotFoundException(id));
    }
}

我通过浏览器访问了http://localhost:8080/user/1。这是输出:

spring-h2-jpa get mapping

这里也显示loginCredential,但我想退回除此以外的所有内容。

在没有其他课程的情况下如何做到这一点?

2 个答案:

答案 0 :(得分:3)

在字段定义中添加@JsonIgnore。 另外,您可以在班级使用@JsonIgnoreProperties

我注意到您尝试给字段私有访问修饰符。这不会将字段隐藏到JSON序列化程序中,因为您的班级使用了Lombok的@Data进行了注释,而Lombok的link在不带@ Getter / @ Setter且具有覆盖访问权限的情况下使用时,会将生成的方法的访问权限设置为public。

答案 1 :(得分:1)

或者您可以让另一个对象返回浏览器

@Builder
@Data
public class UserResponse {

    private String eMail;
    private String phoneNumber;
    private String displayName;

    // omitted the rest because im lazy

}


@RestController
public class UserController {

    private final UserRepository repository;

    @Autowire
    public UserController(UserRepository repository) {
        this.repository = repository;
    }

    @GetMapping("/user/{id}")
    public UserResponse one(@PathVariable Long id) {
        final Optional<UserEntity> user = repository.findById(id).orElseThrow(() -> new UserNotFoundException(id));
        return user.map(userEntity -> {
            return UserResponse.builder()
                .eMail(userEntity.getEMail())
                .phoneNumber(userEntity.getphoneNumber())

                // omitted the rest because im lazy

                .build();
        })

    }
}