Spring Boot - PrePersist and PreUpdate for Couchbase

I try to implement an example of Spring Boot with the usage Couchbase I have no idea how to implement PrePersist and PreUpdate for Couchbase Here are my codes shown below
@Getter
@Setter
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@Document
public class BaseEntity {

@Id
private String id;

@Field(name = "createdAt")
private LocalDateTime createdAt;

@Field(name = "createdBy")
private String createdBy;

@Field(name = "updatedAt")
private LocalDateTime updatedAt;

@Field(name = "updatedBy")
private String updatedBy;

@PrePersist
public void prePersist() {
this.createdBy = Optional.ofNullable(SecurityContextHolder.getContext().getAuthentication())
.map(Authentication::getPrincipal)
.filter(user -> !"anonymousUser".equals(user))
.map(Jwt.class::cast)
.map(jwt -> jwt.getClaim(TokenClaims.USER_EMAIL.getValue()).toString())
.orElse("anonymousUser");
this.createdAt = LocalDateTime.now();
}

@PreUpdate
public void preUpdate() {
this.updatedBy = Optional.ofNullable(SecurityContextHolder.getContext().getAuthentication())
.map(Authentication::getPrincipal)
.filter(user -> !"anonymousUser".equals(user))
.map(Jwt.class::cast)
.map(jwt -> jwt.getClaim(TokenClaims.USER_EMAIL.getValue()).toString())
.orElse("anonymousUser");
this.updatedAt = LocalDateTime.now();
}

}
@Getter
@Setter
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@Document
public class BaseEntity {

@Id
private String id;

@Field(name = "createdAt")
private LocalDateTime createdAt;

@Field(name = "createdBy")
private String createdBy;

@Field(name = "updatedAt")
private LocalDateTime updatedAt;

@Field(name = "updatedBy")
private String updatedBy;

@PrePersist
public void prePersist() {
this.createdBy = Optional.ofNullable(SecurityContextHolder.getContext().getAuthentication())
.map(Authentication::getPrincipal)
.filter(user -> !"anonymousUser".equals(user))
.map(Jwt.class::cast)
.map(jwt -> jwt.getClaim(TokenClaims.USER_EMAIL.getValue()).toString())
.orElse("anonymousUser");
this.createdAt = LocalDateTime.now();
}

@PreUpdate
public void preUpdate() {
this.updatedBy = Optional.ofNullable(SecurityContextHolder.getContext().getAuthentication())
.map(Authentication::getPrincipal)
.filter(user -> !"anonymousUser".equals(user))
.map(Jwt.class::cast)
.map(jwt -> jwt.getClaim(TokenClaims.USER_EMAIL.getValue()).toString())
.orElse("anonymousUser");
this.updatedAt = LocalDateTime.now();
}

}
1 Reply
JavaBot
JavaBot3mo ago
This post has been reserved for your question.
Hey @direct_x_34! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here. 💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
Want results from more Discord servers?
Add your server