Switch language한국어
Back to the list

Delivery Encryption Module Development Journal

TL;DR AI

Key summary

2 min read
  1. Article published author Kang Junyoung published the article on 2025-06-02.

  2. Project implemented a custom encryption module named cowcow-enc module was developed by the delivery platform development team.

  3. Design decision selected JPA AttributeConverter for automatic entity encryption/decryption chose @Converter after evaluating PostLoad and Hibernate PreLoad approaches.

  4. Approach option rejected JPA @PostLoad caused entity fields to be marked dirty and triggered updates on flush.

  5. Rejected Hibernate PreLoad event worked on Hibernate 5/Spring Boot 2.x but failed on Hibernate 6.x due to a bug (HHH-16350) until 6.2.0.

Read the original