SpringBoot(??????)@Autowired???@Inject???@Resource
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot(??????)@Autowired???@Inject???@Resource相关的知识,希望对你有一定的参考价值。
?????????tor ?????? tom lock javadoc log actor post auto
@Resource,@Autowired,@Inject ???3?????????????????????bean????????????????????????????????????????????????????????????
v??????
ANNOTATION | PACKAGE | SOURCE | ????????? | ???????????? | ?????? |
---|---|---|---|---|---|
@AutoWired | org.springframework.bean.factory???Spring??????????????? | Spring 2.5+ | ??????????????????????????????????????????????????????????????? | ??????AutowireAnnotationBeanPostProcessor????????????????????? | ????????????????????????/?????????????????????required?????????false?????????????????????bean??????????????? |
@Resource | javax.annotation,???JSR-250?????????JDK6????????????,Spring????????????2.5?????? | Java JSR-250 | ???????????????????????????????????? | ??????CommonAnnotationBeanPostProcessor????????????????????? | ???@AutoWired????????????????????????name???????????????beanName,?????????name?????????bean??????????????????????????????????????????required?????? |
@Inject | javax.inject,???JSR-303?????????Spring??????3????????????????????????????????? | Java JSR-330 | ?????????????????????????????????????????? | ??????AutowiredAnnotationBeanPostProcessor????????????????????? | ???@AutoWired?????????????????????@Inject??????required?????? |
v????????????
2.1 @Inject
?????????@Inject
??????????????????@Named
????????????????????????????????????????????????
@Inject @Named("mongo") private Mongo mongo;
2.2 @Autowired
@Autowired
???????????????required
??????????????????false??????????????????false??????????????????????????????bean?????????????????????????????????
@Autowired private MongoTemplate mongoTemplate;
2.3 @Resource
@Resource
?????????????????????name???????????????
@Resource(name = "testMapper") private TestMapper testMapper;
以上是关于SpringBoot(??????)@Autowired???@Inject???@Resource的主要内容,如果未能解决你的问题,请参考以下文章