在需要從JSON 回應中排除敏感或不相關資料的場景中,Spring MVC 提供了靈活的機制來忽略序列化過程中的特定欄位。
@JsonIgnoreProperties 註解可讓您在序列化為 JSON 時排除特定欄位。應用於 POJO 時,它採用欄位名稱清單作為參數,並從 JSON 表示中省略這些欄位。例如,如果您想要從問題中描述的User 物件中排除createdBy和updatedBy字段:
@Entity @Table(name = "user") @JsonIgnoreProperties(ignoreUnknown = true, value = {"createdBy", "updatedBy"}) public class User { // Class variables and methods }
使用此註釋,JSON回應將僅包含在value參數中明確指定的字段,即userId、 userName 和emailId。
另一個選項是在各個欄位上使用 @JsonIgnore 註解。此註釋指示在序列化和反序列化期間應忽略該欄位。當排除欄位的清單是動態的並且可能根據執行時間條件而變化時,它非常有用。例如,如果你想要動態排除encryptedPwd欄位:
@Entity @Table(name = "user") @JsonIgnoreProperties(ignoreUnknown = true) public class User { // Other class variables and methods @JsonIgnore private String encryptedPwd; }
透過在encryptedPwd欄位上設定@JsonIgnore,即使它包含在get方法中,它也會被排除在JSON序列化以外POJO。
這些技術的實際實作可以在此GitHub 儲存庫中找到:https://github.com/spring-projects/spring-framework/tree/main/ spring- webmvc/src/test/java/org/springframework/web/servlet/config/annotation/WebMvcAnnotationConfigTests.
以上是如何在 Spring MVC 中動態從 JSON 序列化中排除欄位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!