◽ Spring, SpringBoot

[Spring - 어노테이션(Annotation) ] "커스텀 어노테이션(Annotation)" 만들기

  직접 어노테이션 만들기 위해서는 아래의 양식이 필요하다.

기본 양식

1
2
3
4
5
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface InsertIntData {
    int data() default 0;
}
 

 

 

푸터바