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、测试代码
时间: 2024-10-20 02:16:41