Spring知识点回顾(01)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring知识点回顾(01)相关的知识,希望对你有一定的参考价值。
Spring知识点回顾(01)
一、依赖注入
1、声明Bean的注解
@Component
@Service
@Repository
@Controller
2、注入Bean的注解
@Autowired
@Inject
@Resource
二、加载Bean
1、xml方式 - applicationcontext.xml : Beans, Bean, Component-Scan
2、注解方式 - @Configuration,@ComponentScan,@Bean
用@Configuration注解该类,等价于XML中配置beans;用@Bean标注方法等价于XML中配置bean。
3、测试代码
以上是关于Spring知识点回顾(01)的主要内容,如果未能解决你的问题,请参考以下文章