Kim-Baek 개발자 이야기

[TIL] 20.09.16 - @Autowired, @Resource 본문

개발/TIL

[TIL] 20.09.16 - @Autowired, @Resource

김백개발자 2020. 9. 16. 20:05

@Autowired와 @Resource는 같은 기능을 하는 어노테이션이다.

하지만 둘에는 차이점이 존재한다.

1. @Autowired는 스프링 프레임워크 어노테이션이다. 그렇기 때문에 스프링을 사용하지 않는 환경에서는 @Resource를 사용해야 한다.

2. @Autowired의 경우 type과 id 가운데 매칭 우선순위는 type이 높다. @Resource는 그 반대.

표로 정리하면 다음과 같다.

 

  @Autowired @Resource
스펙 스프링 표준 자바
소속 패키지 org.springframework.beans.factory.annotation.Autowired  javax.annotation.Resource 
빈 검색 방식 

byType 먼저. 

못 찾으면 byName

byName 먼저.

못 찾으면 byType 

특이사항  @Qualifier("") 협업  name 어트리뷰트 
byName 강제하기 

@Autowired

@Qualifier("tire1") 

@Resource(name="tire1") 




반응형
Comments