Annotation Interface JsonExclude


@Target({FIELD,TYPE}) @Retention(RUNTIME) public @interface JsonExclude
Marks fields or types to be excluded from JSON serialization and deserialization. Used to control which properties are processed during JSON operations. Can be applied to: - Fields: Skip specific properties - Types: Exclude entire classes
Author:
pchretien