如何使用JPA在Java Spring应用程序中删除用户时自动更新设备状态?

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

我正在使用Spring开发一个Java程序,该程序使用JPA与数据库通信。在我的应用程序中,我有多个类,但我遇到了User和Equipment类的问题。每个用户都拥有设备,每个设备都有一个状态。(已分配,未分配,或正在维修中)。我的目标是在删除用户时自动将关联设备的状态从已分配更新为未分配。如何实现?请参阅下面的代码片段以供参考:

  1. package se.what.inventorymanager;
  2. import jakarta.persistence.*;
  3. import java.util.Date;
  4. @Entity
  5. @Table(name="equipment")
  6. public class Equipment {
  7. @Id
  8. @GeneratedValue(strategy = GenerationType.IDENTITY)
  9. private int id;
  10. @Column(name="equipment_name")
  11. private String name;
  12. @Column(name="purchase_date")
  13. private Date purchaseDate;
  14. @Column(name="purchase_price")
  15. private double purchasePrice;
  16. @Enumerated(EnumType.STRING)
  17. private EquipmentState state;
  18. @Enumerated(EnumType.STRING)
  19. private EquipmentType type;
  20. @OneToOne(mappedBy = "equipment")
  21. private EquipmentSupport equipmentSupport;
  22. @ManyToOne
  23. @JoinColumn(name = "purchased_by", referencedColumnName = "id")
  24. private User user;
  25. public Equipment() {}
  26. public Equipment(String name, Date purchaseDate, double purchasePrice, EquipmentState state,
  27. EquipmentType type, User user) {
  28. this.name = name;
  29. this.purchaseDate = purchaseDate;
  30. this.purchasePrice = purchasePrice;
  31. this.state = state;
  32. this.type = type;
  33. this.user = user;
  34. }
  35. public int getId() {
  36. return id;
  37. }
  38. public String getName() {
  39. return name;
  40. }
  41. public void setName(String name) {
  42. this.name = name;
  43. }
  44. public Date getPurchaseDate() {
  45. return purchaseDate;
  46. }
  47. public void setPurchaseDate(Date purchaseDate) {
  48. this.purchaseDate = purchaseDate;
  49. }
  50. public double getPurchasePrice() {
  51. return purchasePrice;
  52. }
  53. public void setPurchasePrice(double purchasePrice) {
  54. this.purchasePrice = purchasePrice;
  55. }
  56. public EquipmentState getState() {
  57. return state;
  58. }
  59. public void setState(EquipmentState state) {
  60. this.state = state;
  61. }
  62. public EquipmentType getType() {
  63. return type;
  64. }
  65. public void setType(EquipmentType type) {
  66. this.type = type;
  67. }
  68. public User getUser() {
  69. return user;
  70. }
  71. public void setUser(User user) {
  72. this.user = user;
  73. }
  74. @Override
  75. public String toString() {
  76. return "Equipment{" +
  77. "id=" + id +
  78. ", name='" + name + '\'' +
  79. ", purchaseDate=" + purchaseDate +
  80. ", purchasePrice=" + purchasePrice +
  81. ", state=" + state +
  82. ", type=" + type +
  83. ", equipmentSupport=" + equipmentSupport +
  84. ", user=" + user.getName() +
  85. '}';
  86. }
  87. @PreUpdate
  88. @PrePersist
  89. public void updateEquipmentState() {
  90. if (user == null) {
  91. state = EquipmentState.unassigned;
  92. }
  93. }
  94. }
  95. package se.what.inventorymanager;
  96. import jakarta.persistence.*;
  97. @Entity
  98. @Table(name = "user")
  99. public class User {
  100. @Id
  101. @GeneratedValue(strategy = GenerationType.IDENTITY)
  102. private int id;
  103. private String name;
  104. private String department;
  105. private String email;
  106. private String telephone;
  107. private String username;
  108. private String password;
  109. @Column(name = "role")
  110. @Enumerated(EnumType.STRING)
  111. private RoleType role;
  112. public User(String name, String department, String email, String telephone, String username, String password, RoleType role) {
  113. this.name = name;
  114. this.department = department;
  115. this.email = email;
  116. this.telephone = telephone;
  117. this.username = username;
  118. this.password = password;
  119. this.role = role;
  120. }
  121. public User() {
  122. }
  123. public String getName() {
  124. return name;
  125. }
  126. public void setName(String name) {
  127. this.name = name;
  128. }
  129. public String getDepartment() {
  130. return department;
  131. }
  132. public void setDepartment(String department) {
  133. this.department = department;
  134. }
  135. public String getEmail() {
  136. return email;
  137. }
  138. public void setEmail(String email) {
  139. this.email = email;
  140. }
  141. public String getTelephone() {
  142. return telephone;
  143. }
  144. public void setTelephone(String telephone) {
  145. this.telephone = telephone;
  146. }
  147. public String getUsername() {
  148. return username;
  149. }
  150. public void setUsername(String username) {
  151. this.username = username;
  152. }
  153. public String getPassword() {
  154. return password;
  155. }
  156. public void setPassword(String password) {
  157. this.password = password;
  158. }
  159. public RoleType getRole() {
  160. return role;
  161. }
  162. public void setRole(RoleType role) {
  163. this.role = role;
  164. }
  165. @Override
  166. public String toString() {
  167. return "\nUser id: " + id + " Name: " + name + " Department: " + department + " Email: " + email + " Telephone: "
  168. + telephone + " Username: " + username + " Password: " + password + " Role: " + role;
  169. }
  170. }
  171. ;

字符串

u3r8eeie

u3r8eeie1#

在Spring应用程序中,当您需要在删除实体时自动执行某些操作时,可以使用JPA的生命周期回调方法或使用实体侦听器。例如,当删除User实体时,您希望将与该用户关联的所有Equipment的状态更新为unassigned。
在User实体中创建一个@PreRemove回调方法,该方法将在实体被删除之前调用。在这个@PreRemove方法中,您可以编写逻辑来更新所有相关Equipment的状态。请记住,您需要注入一个自定义服务或存储库,以便您可以执行数据库操作。这通常是通过使用Spring的@Autowired,但不建议直接在实体类中执行注入,因为实体应该保持轻量级状态,不应该处理业务逻辑。2更好的方法是在服务级别处理此逻辑。
下面是一个简单的示例,展示了如何在服务级别执行此操作:

  1. @Service
  2. public class UserService {
  3. @Autowired
  4. private UserRepository userRepository;
  5. @Autowired
  6. private EquipmentRepository equipmentRepository;
  7. @Transactional
  8. public void deleteUser(int userId) {
  9. // Find all devices owned by the user
  10. List<Equipment> equipments = equipmentRepository.findByUserId(userId);
  11. // Update the status of these devices to unassigned
  12. equipments.forEach(equipment -> {
  13. equipment.setState(EquipmentState.UNASSIGNED);
  14. equipment.setUser(null); // Optional, if you want to unassociate with the user
  15. equipmentRepository.save(equipment);
  16. });
  17. // Delete User
  18. userRepository.deleteById(userId);
  19. }
  20. }

字符串

展开查看全部

相关问题