Spring 关系破裂

ecfsfe2w  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(390)

我有三个实体:

  1. @EqualsAndHashCode(callSuper = true)
  2. @Entity
  3. @Data
  4. @AllArgsConstructor
  5. @NoArgsConstructor
  6. @Table(name = "author")
  7. public class Author extends IdEntity {
  8. private String firstName;
  9. private String lastName;
  10. @Email(message = "Provide a valid email")
  11. @NotEmpty(message = "Email cannot be empty")
  12. private String email;
  13. private String userName;
  14. @Length(min = 5, message = "XD")
  15. @NotEmpty(message = "Password cannot be empty")
  16. private String password;
  17. private String profilePic;
  18. private String description;
  19. @CreationTimestamp
  20. private Date createdAt;
  21. @JsonManagedReference
  22. @OneToMany(fetch = FetchType.LAZY, orphanRemoval = true, mappedBy = "author")
  23. @Transient
  24. private Set<Post> posts;
  25. public Post getPostById(Long postId) {
  26. for (Post post: posts)
  27. if (post.getId().equals(postId))
  28. return post;
  29. return null;
  30. }
  31. public Author(String firstName, String lastName, @Email(message = "Provide a valid email") @NotEmpty(message = "Email cannot be empty") String email, String userName, @Length(min = 5, message = "XD") @NotEmpty(message = "Password cannot be empty") String password, String profilePic, String description, Date createdAt) {
  32. this.firstName = firstName;
  33. this.lastName = lastName;
  34. this.email = email;
  35. this.userName = userName;
  36. this.password = password;
  37. this.profilePic = profilePic;
  38. this.description = description;
  39. this.createdAt = createdAt;
  40. }
  41. }
  42. @Entity
  43. @Data
  44. @AllArgsConstructor
  45. @NoArgsConstructor
  46. @Table(name = "comment")
  47. public class Comment extends IdEntity {
  48. private String content;
  49. @CreationTimestamp
  50. private Date createdAt;
  51. @ManyToOne(fetch = FetchType.LAZY, optional = false)
  52. @JoinColumn(
  53. name = "author_id",
  54. nullable = false,
  55. foreignKey = @ForeignKey(
  56. name = "fk_authors_id"
  57. ))
  58. @ToString.Exclude
  59. @NotNull
  60. @JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
  61. private Author author;
  62. @JsonBackReference
  63. @ManyToOne(fetch = FetchType.LAZY, optional = false)
  64. @JoinColumn(
  65. name = "post_id",
  66. nullable = false,
  67. foreignKey = @ForeignKey(
  68. name = "fk_posts_id"
  69. ))
  70. @ToString.Exclude
  71. @NotNull
  72. @JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
  73. private Post post;
  74. }
  75. @EqualsAndHashCode(callSuper = true)
  76. @Entity
  77. @Data
  78. @AllArgsConstructor
  79. @NoArgsConstructor
  80. @Table(name = "post")
  81. public class Post extends IdEntity {
  82. @Length(min = 5, message = "Your title must have at least 5 characters")
  83. @NotEmpty(message = "Please provide title")
  84. private String title;
  85. private String content;
  86. @CreationTimestamp
  87. private LocalDateTime createdAt;
  88. //private LocalDateTime updatedAt;
  89. private int likes;
  90. private int views;
  91. @JsonBackReference
  92. @ManyToOne(fetch = FetchType.LAZY, optional = false)
  93. @JoinColumn(
  94. name = "author_id",
  95. nullable = false,
  96. foreignKey = @ForeignKey(
  97. name = "fk_authors_id"
  98. ))
  99. @ToString.Exclude
  100. @NotNull
  101. private Author author;
  102. @JsonManagedReference
  103. @OneToMany(fetch = FetchType.LAZY, orphanRemoval = true, mappedBy = "post", cascade = CascadeType.ALL)
  104. @Transient
  105. private Collection<Comment> comments;
  106. //Section, Category, Tags, featured, published
  107. //Add other reactions
  108. }

每次我试图添加帖子。它应该被添加到post表,并自动添加到author表,但这是不可能的。与其说是双向Map,不如说是一对一Map。我不知道怎样才能修好它。下面是损坏模块的源代码:github.com/wardenclyffee/wardenclyffe/tree/comment-posting/server

polhcujo

polhcujo1#

如果我理解你正确,你想添加作者时添加文章。在这种情况下,您需要通过指定级联类型来告诉hibernate:

  1. @JsonBackReference
  2. @ManyToOne(
  3. fetch = FetchType.LAZY,
  4. optional = false,
  5. cascade = CascadeType.PERSIST)
  6. @JoinColumn(
  7. name = "author_id",
  8. nullable = false,
  9. foreignKey = @ForeignKey(
  10. name = "fk_authors_id"
  11. ))
  12. @ToString.Exclude
  13. @NotNull
  14. private Author author;

有关hibernate中级联类型的更多信息,请访问web。有很多资源。
而且,这看起来是错误的设置 @Transient 对作者实体中设置的文章的注解。我不知道会发生什么,但我会删除它,因为临时字段是不应该存储在数据库中的字段,但在这种情况下,hibernate将正确处理关联。

展开查看全部

相关问题