Home > AI > Backend > SpringBoot >

@Retention

RetentionPolicy usage

ValueExplanation
SOURCEThe compiler drops the comment
CLASSThe compiler will be logged in the file, and the default runtime does not require virtual machine retention.
RUNTIMEThe compiler is recorded in a file and is kept by the virtual machine runtime for easy reading.

Leave a Reply