반응형 메타어노테이션1 Custom Annotation 생성하기 @interface 알짜만 빼먹기 @Annotation을 생성하는 방법에 대해 알아보겠습니다. 1. annotation의 생성 annotation은 @interface로 생성할 수 있습니다. public @interface CustomAnotation{}; 이렇게 생성한 어노테이션은 어디에든 붙여서 사용할 수 있습니다. @CustomAnnotation @RequiredArgsConstructor public class TestController { @CustomAnnotation private final TestService service; @CustomAnnotation @GetMapping(value="hello") public String getPage(){ return "hello" } } 2. Meta Annotation의 종류.. Programing/JAVA 2022. 11. 15. 이전 1 다음 💲 추천 글 반응형