e. глин Когда у меня есть слушатель, как < /p>
Код: Выделить всё
public class EncryptableEntityListener {
@PrePersist
@PreUpdate
private void onUpsert(Object entity) {
if (!(entity instanceof EncryptableExtended)) {
return;
}
EncryptableExtended encryptableEntity = (EncryptableExtended) entity;
boolean success = encryptionService.encrypt(encryptableEntity);
if (!success) {
throw new RuntimeException():
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... prepersist