@Inject vs. @Resource vs. @Autowired — Java vs. Spring
@Autowired (Spring) & @Inject (Java)
- Matches by type
- Restricts by qualifiers
- Matches by name
@Resource (Java)
- Matches by name
- Matches by type
- Restricted by qualifiers, ignored if match is found by name
Comments
Post a Comment