[Spring - 어노테이션(Annotation) ] "커스텀 어노테이션(Annotation)" 만들기
직접 어노테이션 만들기 위해서는 아래의 양식이 필요하다.
기본 양식
1
2
3
4
5
|
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface InsertIntData {
int data() default 0;
}
|
'◽ Spring, SpringBoot' 카테고리의 다른 글
[Spring, Spring boot] 서버와 클라이언트의 동작 이해하기 - 수정1 (0) | 2019.11.23 |
---|---|
[Spring Maven project] Maven 프로젝트 (1) - Import하기 (0) | 2019.11.05 |
[Spring - 라이브러리(dependency)] "JUnit" 테스트 지원 어노테이션 [ @Test, @Ignore, @Before, @After, @BeforeClass, @AfterClass ] (0) | 2019.11.04 |
[Spring - 어노테이션(Annotation) ] @AliasFor (2) | 2019.10.31 |
[Java - 기능 - (14) ] ModelAndView 서블릿 (0) | 2019.10.15 |
[Spring - 어노테이션(Annotation) ] @Valid - 유효성 체크 (0) | 2019.10.15 |
[Spring - 기록] {"errorType":"AccessDeniedError","message":"cannot find appkey"} ㅡ>> 다음 앱키가 먹히질 않을 때 (0) | 2019.09.16 |