목록annotation (1)
개발자 끄적끄적
Annotation 용어 정리
MVC - Controller(RestController, Servlet), Service(dao) Mybatis - Mapper interface, xml AOP(관심사항을 분리해서 특정 요소(=Method)에 Weaving) - aspectj(weaver, rt) dependency 추가 - Application main class -> aspectj를 활성화 - Config class 작성 DI(Dependency Injection, 의존성 주입) - 클래스간의 의존관계를 스프링 컨데이너가 자동으로 연결해주는 것 - Spring에 의해 생성되고 관리되는 자바 객체 - 어떤 객체(B)를 사용하는 주체(A)가 객체(B)를 직접 생성하는 것이 아니라 객체를 외부(Spring)에 생성해서 사용하려는 주체 ..
Spring
2023. 3. 6. 17:04