java 在字段上应用@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)无效

mitkmikd  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(252)

我是Sping Boot 的新手,在我使用User模型时遇到了麻烦,我使用相同的模型来注册并返回响应给user。注册时,当然,我需要密码字段,当返回关于user的响应时,我不需要返回密码字段,因此,我尝试使用@JsonProperty(access = JsonProperty.Access.WRITE_ONLY),但是当我从数据库获取用户详细信息时,我仍然得到密码字段。我做错了什么?

  1. package com.practice.todo.model;
  2. import com.fasterxml.jackson.annotation.JsonProperty;
  3. import jakarta.persistence.*;
  4. import jakarta.validation.constraints.NotBlank;
  5. import jakarta.validation.constraints.Pattern;
  6. import jakarta.validation.constraints.Size;
  7. @Entity
  8. @Table(name = "users")
  9. public class User {
  10. @Id
  11. @GeneratedValue(strategy = GenerationType.IDENTITY)
  12. @Column(name = "id")
  13. private Integer id;
  14. @NotBlank
  15. @Column(name = "name")
  16. private String name;
  17. @NotBlank
  18. @Column(name = "email", unique = true)
  19. @Pattern(regexp = "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$", message = "Invalid Email Format")
  20. private String email;
  21. @NotBlank
  22. @Size(min = 8)
  23. @Column(name = "password")
  24. @JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
  25. private String password;
  26. public Integer getId() {
  27. return id;
  28. }
  29. public void setId(Integer id) {
  30. this.id = id;
  31. }
  32. public String getName() {
  33. return name;
  34. }
  35. public void setName(String name) {
  36. this.name = name;
  37. }
  38. public String getEmail() {
  39. return email;
  40. }
  41. public void setEmail(String email) {
  42. this.email = email;
  43. }
  44. public String getPassword() {
  45. return password;
  46. }
  47. public void setPassword(String password) {
  48. this.password = password;
  49. }
  50. @Override
  51. public String toString() {
  52. return "User{" + "id=" + id + ", name='" + name + '\'' + ", email='" + email + '\'' + ", password='" + password + '\'' + '}';
  53. }
  54. }

字符串

jv2fixgn

jv2fixgn1#

我刚刚检查了你的代码,它像预期的那样工作。password字段不包括在作为REST调用的响应返回的JSON字符串中。
但是它仍然包含在日志中。这是因为你将它包含在toString()方法中。最好从那里删除它。

相关问题