Spring配置原理

@Configuration, 

任何一个标注了@Bean的方法, 其返回值将作为一个bean定义注册到Spring的IoC容器, 方法名将默认成该bean定义的id


@ComponentScan

@Import

配置PropertySourcesPlaceholderConfigurer,必须在其他需要读取配置文件的属性来实例化的bean之前实例化,否则其他bean会初始化失败。

配置PropertySourcesPlaceholderConfigurer


配置SqlSessionFactory,@Autowired,@Value注解可以用在方法参数里,@Autowired注入的属性必须在改bean之前实例化。

配置SqlSessionFactory

配置MapperScannerConfigurer配置MapperFactoryBean

配置MapperScannerConfigurer

@MapperScan注解配置MapperFactoryBean

通过@MapperScan注解

你可能感兴趣的:(Spring配置原理)