본문 바로가기

Programing/Spring7

Spring Bean 생성 및 주입 방법 Spring Bean 생성 및 주입 방법에는 여러가지가 있다. Spring Framework 특성상 IoC 컨테이너인 ApplicationContext(통용되는 이름) 이 생성한다. 이 때 xml로 설정하는 방법도 있지만, Spring 3.1 이상부터는 Annotation을 많이 활용한다. Annotation에는 아래와 같이 존재한다. @Component Spring 컨테이너에게 Bean 생성 대상임을 알리는 Annotation이다. 해당 Annotation이 있으면 스프링 컨테이너는 해당 클래스를 Bean으로 생성한다. @Service 현재로서는 @Component와 차이가 없다. 다만 해당 클래스가 Service Layer 임을 명시적으로 알릴 수 있으니, 목적에 맞게 @Component와는 구분하여.. 2015. 6. 23.
@Resource VS @Autowired http://forum.spring.io/forum/spring-projects/container/40092-autowired-and-resource-difference @Autowired Bean 타입기준@Resource Bean 이름 기준 see chapter 3.11.1 of Reference Doc:http://docs.spring.io/spring/docs/2.5.x/reference/beans.html#beans-autowired-annotation and chapetr 3.11.3 of Reference Doc:http://docs.spring.io/spring/docs/2.5.x/reference/beans.html#beans-resource-annotation 2015. 3. 12.
AspectJ를 통한 Spring-AOP 설정 Aop 따라잡기. AOP 개념에 대해서는 여기서 설정하지 않는다. (웹서핑 5분만 해보면 정리 잘 되어 있는 페이지들이 아주 많이 있다.) 참고 : http://static.springsource.org/spring/docs/3.0.0.RC1/reference/html/ch07s08.html AOP 설정하는 방법은 여러가지가 있지만 XML에 설정하는 고전적인 방법은 설명하지 않을 예정이지만, 생각보다 여러 프로젝트에서 많이 사용되고 있으니 알아두면 손해 볼 일은 없을 것이다. 참고로 여기서는 @Aspect Annotation을 통한 AOP 설정을 소개하도록 한다. 먼저 AspectJ 관련 Annotation을 사용하기 위해서는 XML에 기본 설정이 필요하다. proxy-target-class="true".. 2015. 3. 5.