spring在启动时会自己把bean(java组件)注册到ioc容器里,实现控制反转,在开发人员使用spring开发应用程序时,你是看不到new关键字的,所有对象都应该从容器里获得,它们的生命周期在放入容器时已经确定!
下面说一下三种注册bean的方法
@ComponentScan
@Bean
@Import
@ComponentScan注册指定包里的bean
Spring容器会扫描@ComponentScan配置的包路径,找到标记@Component注解的类加入到Spring容器。
我们经常用到的类似的(注册到IOC容器)注解还有如下几个:
@Configuration:配置类
@Controller :web控制器
@Repository :数据仓库
@Service:业务逻辑
下面代码完成了EmailLogServiceImpl这个bean的注册,当然也可以放在@Bean里统一注册,需要看@Bean那一节里的介绍。
@Component
public class EmailLogServiceImpl implements EmailLogService {
private static final Logger logger = LoggerFactory.getLogger(EmailLogServiceImpl.class);
@Override
public void send(String email, String message) {
Assert.notNull(email, "email must no