📌 들어가며 SpringBoot를 이용해 개발을 하다보면 정말 많이 사용하게 되는 것 중 하나가 어노테이션입니다. 종류도 매우 다양하며(@RestController, @Component.. 등) Personal 어노테이션을 만들 수도 있습니다. 오늘은 이러한 Spring에서 어노테이션의 정의와 동작원리에 대해서 알아보도록 하겠습니다. 📌 Annotation 의 정의 어노테이션에 대한 정의를 자바 공식 문서에서 찾아보면 https://docs.oracle.com/javase/tutorial/java/annotations/ Lesson: Annotations (The Java™ Tutorials > Learning the Java Language) The Java Tutorials have been writ..