[컴][자바][웹] Spring annotation 설명 자료

스프링 어노테이션



annotation 자료


  1. Internet play room :: Spring 어노테이션 : Spring annotation 자료인데 annotation 이 기존 spring 의 어떤 설정과 같은 것인지 알려준다.
  2. Spring Annotations : annotation 에 대한 설명과 tips


annotation vs xml

@Service

아래와 같이 MyService 를 만들었다면

<bean id="MyService" class="mine.svc.service.impl.MyServiceImpl">
    <property name="cdnDao" ref="CdnDao"/>
</bean>

@Service annotation 을 활용해서는 아래와 같이 해 주면 된다.

@Service
public class MyServiceImpl implements MyService {
...
}





댓글 없음:

댓글 쓰기