本篇咱們在SpringBoot中整合Mybatis這個orm框架,畢竟分析一下其自動配置的源碼,咱們先來回顧一下之前Spring中是如何整合Mybatis的,你們能夠看看我這篇文章Mybaits 源碼解析 (十)----- Spring-Mybatis框架使用與源碼解析 html
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>4.3.8.RELEASE</version> </dependency> <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.3.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <typeAliases> <typeAlias alias="User" type="com.chenhao.bean.User" /> </typeAliases> <plugins> <plugin interceptor="com.github.pagehelper.PageInterceptor"> <property name="helperDialect" value="mysql"/> </plugin> </plugins> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.chenhao.mapper.UserMapper"> <select id="getUser" parameterType="int" resultType="com.chenhao.bean.User"> SELECT * FROM USER WHERE id = #{id} </select> </mapper>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql://127.0.0.1:3306/test"></property> <property name="username" value="root"></property> <property name="password" value="root"></property> </bean> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="configLocation" value="classpath:mybatis-config.xml"></property> <property name="dataSource" ref="dataSource" /> <property name="mapperLocations" value="classpath:mapper/*.xml" /> </bean> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.chenhao.mapper" /> </bean> </beans>
@Configuration @MapperScan("com.chenhao.mapper") public class AppConfig { @Bean public DataSource dataSource() { return new EmbeddedDatabaseBuilder() .addScript("schema.sql") .build(); } @Bean public DataSourceTransactionManager transactionManager() { return new DataSourceTransactionManager(dataSource()); } @Bean public SqlSessionFactory sqlSessionFactory() throws Exception { //建立SqlSessionFactoryBean對象 SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean(); //設置數據源 sessionFactory.setDataSource(dataSource()); //設置Mapper.xml路徑 sessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mapper/*.xml")); // 設置MyBatis分頁插件 PageInterceptor pageInterceptor = new PageInterceptor(); Properties properties = new Properties(); properties.setProperty("helperDialect", "mysql"); pageInterceptor.setProperties(properties); sessionFactory.setPlugins(new Interceptor[]{pageInterceptor}); return sessionFactory.getObject(); } }
最核心的有兩點:java
MapperFactoryBeanmysql
//最終注入Spring容器的就是這裏的返回對象 public T getObject() throws Exception { //獲取父類setSqlSessionFactory方法中建立的SqlSessionTemplate //經過SqlSessionTemplate獲取mapperInterface的代理類 //咱們例子中就是經過SqlSessionTemplate獲取com.chenhao.mapper.UserMapper的代理類 //獲取到Mapper接口的代理類後,就把這個Mapper的代理類對象注入Spring容器 return this.getSqlSession().getMapper(this.mapperInterface); }
接下來咱們看看SpringBoot是如何引入Mybatis的git
<dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.9</version> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> </dependency>
spring: datasource: url: jdbc:mysql:///springboot username: root password: admin type: com.alibaba.druid.pool.DruidDataSource initialSize: 5 minIdle: 5 maxActive: 20 mybatis: config-location: classpath:mybatis/mybatis-config.xml mapper-locations: classpath:mybatis/mapper/*.xml type-aliases-package: org.com.cay.spring.boot.entity
@SpringBootApplication @EnableScheduling @ServletComponentScan @MapperScan("com.supplychain.app.mapper") public class Application { public static void main(String[] args) { TimeZone.setDefault(TimeZone.getTimeZone("GMT+8")); System.setProperty("user.timezone", "GMT+8"); SpringApplication.run(Application.class, args); } }
咱們看到mybatis-spring-boot-starter實際上引入了jdbc的場景啓動器,這一塊咱們上一篇文章已經分析過了,還引入了mybatis-spring的依賴,最終還引入了mybatis-spring-boot-autoconfigure這個依賴,其實mybatis-spring-boot-starter只是引入各類須要的依賴,最核心的代碼是在引入的mybatis-spring-boot-autoconfigure這個項目當中,咱們來看看這個項目github
咱們看到mybatis-spring-boot-autoconfigure也像spring-boot-autoconfigure同樣配置了spring.factories這個配置文件,而且在配置文件中配置了MybatisAutoConfiguration這個自動配置類,咱們知道SpringBoot啓動時會獲取全部spring.factories配置文件中的自動配置類而且進行解析其中的Bean,那麼咱們就來看看MybatisAutoConfiguration這個自動配置類作了啥?spring
1 @org.springframework.context.annotation.Configuration 2 @ConditionalOnClass({ SqlSessionFactory.class, SqlSessionFactoryBean.class }) 3 @ConditionalOnBean(DataSource.class) 4 //引入MybatisProperties配置類 5 @EnableConfigurationProperties(MybatisProperties.class) 6 @AutoConfigureAfter(DataSourceAutoConfiguration.class) 7 public class MybatisAutoConfiguration { 8 9 private final MybatisProperties properties; 10 11 private final Interceptor[] interceptors; 12 13 private final ResourceLoader resourceLoader; 14 15 private final DatabaseIdProvider databaseIdProvider; 16 17 private final List<ConfigurationCustomizer> configurationCustomizers; 18 19 public MybatisAutoConfiguration(MybatisProperties properties, 20 ObjectProvider<Interceptor[]> interceptorsProvider, 21 ResourceLoader resourceLoader, 22 ObjectProvider<DatabaseIdProvider> databaseIdProvider, 23 ObjectProvider<List<ConfigurationCustomizer>> configurationCustomizersProvider) { 24 this.properties = properties; 25 this.interceptors = interceptorsProvider.getIfAvailable(); 26 this.resourceLoader = resourceLoader; 27 this.databaseIdProvider = databaseIdProvider.getIfAvailable(); 28 this.configurationCustomizers = configurationCustomizersProvider.getIfAvailable(); 29 } 30 31 @Bean 32 @ConditionalOnMissingBean 33 //往Spring容器中注入SqlSessionFactory對象 34 //而且設置數據源、MapperLocations(Mapper.xml路徑)等 35 public SqlSessionFactory sqlSessionFactory(DataSource dataSource) throws Exception { 36 SqlSessionFactoryBean factory = new SqlSessionFactoryBean(); 37 factory.setDataSource(dataSource); 38 factory.setVfs(SpringBootVFS.class); 39 if (StringUtils.hasText(this.properties.getConfigLocation())) { 40 factory.setConfigLocation(this.resourceLoader.getResource(this.properties.getConfigLocation())); 41 } 42 Configuration configuration = this.properties.getConfiguration(); 43 if (configuration == null && !StringUtils.hasText(this.properties.getConfigLocation())) { 44 configuration = new Configuration(); 45 } 46 if (configuration != null && !CollectionUtils.isEmpty(this.configurationCustomizers)) { 47 for (ConfigurationCustomizer customizer : this.configurationCustomizers) { 48 customizer.customize(configuration); 49 } 50 } 51 factory.setConfiguration(configuration); 52 if (this.properties.getConfigurationProperties() != null) { 53 factory.setConfigurationProperties(this.properties.getConfigurationProperties()); 54 } 55 if (!ObjectUtils.isEmpty(this.interceptors)) { 56 factory.setPlugins(this.interceptors); 57 } 58 if (this.databaseIdProvider != null) { 59 factory.setDatabaseIdProvider(this.databaseIdProvider); 60 } 61 if (StringUtils.hasLength(this.properties.getTypeAliasesPackage())) { 62 factory.setTypeAliasesPackage(this.properties.getTypeAliasesPackage()); 63 } 64 if (StringUtils.hasLength(this.properties.getTypeHandlersPackage())) { 65 factory.setTypeHandlersPackage(this.properties.getTypeHandlersPackage()); 66 } 67 if (!ObjectUtils.isEmpty(this.properties.resolveMapperLocations())) { 68 factory.setMapperLocations(this.properties.resolveMapperLocations()); 69 } 70 //獲取SqlSessionFactoryBean的getObject()中的對象注入Spring容器,也就是SqlSessionFactory對象 71 return factory.getObject(); 72 } 73 74 @Bean 75 @ConditionalOnMissingBean 76 //往Spring容器中注入SqlSessionTemplate對象 77 public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) { 78 ExecutorType executorType = this.properties.getExecutorType(); 79 if (executorType != null) { 80 return new SqlSessionTemplate(sqlSessionFactory, executorType); 81 } else { 82 return new SqlSessionTemplate(sqlSessionFactory); 83 } 84 } 85 86 //other code... 87 }
在自動配置的時候會導入一個Properties配置類MybatisProperties,我們來看一下sql
@ConfigurationProperties(prefix = MybatisProperties.MYBATIS_PREFIX) public class MybatisProperties { public static final String MYBATIS_PREFIX = "mybatis"; /** * Location of MyBatis xml config file. */ private String configLocation; /** * Locations of MyBatis mapper files. */ private String[] mapperLocations; /** * Packages to search type aliases. (Package delimiters are ",; \t\n") */ private String typeAliasesPackage; /** * Packages to search for type handlers. (Package delimiters are ",; \t\n") */ private String typeHandlersPackage; /** * Indicates whether perform presence check of the MyBatis xml config file. */ private boolean checkConfigLocation = false; /** * Execution mode for {@link org.mybatis.spring.SqlSessionTemplate}. */ private ExecutorType executorType; /** * Externalized properties for MyBatis configuration. */ private Properties configurationProperties; /** * A Configuration object for customize default settings. If {@link #configLocation} * is specified, this property is not used. */ @NestedConfigurationProperty private Configuration configuration; //other code... }
該Properties配置類做用主要用於與yml/properties中以mybatis開頭的屬性進行一一對應,以下springboot
mybatis: config-location: classpath:mybatis/mybatis-config.xml mapper-locations: classpath:mybatis/mapper/*.xml type-aliases-package: org.com.cay.spring.boot.entity
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"></property> <!-- 自動掃描mapping.xml文件 --> <property name="mapperLocations" value="classpath:com/cn/mapper/*.xml"></property> ... </bean>
另一個Bean爲SqlSessionTemplate,經過SqlSessionFactory來生成SqlSession代理類:session
public class SqlSessionTemplate implements SqlSession, DisposableBean { private final SqlSessionFactory sqlSessionFactory; private final ExecutorType executorType; private final SqlSession sqlSessionProxy; private final PersistenceExceptionTranslator exceptionTranslator; //other code... public SqlSessionTemplate(SqlSessionFactory sqlSessionFactory, ExecutorType executorType, PersistenceExceptionTranslator exceptionTranslator) { notNull(sqlSessionFactory, "Property 'sqlSessionFactory' is required"); notNull(executorType, "Property 'executorType' is required"); this.sqlSessionFactory = sqlSessionFactory; this.executorType = executorType; this.exceptionTranslator = exceptionTranslator; //生成SqlSessioin代理類 this.sqlSessionProxy = (SqlSession) newProxyInstance( SqlSessionFactory.class.getClassLoader(), new Class[] { SqlSession.class }, new SqlSessionInterceptor()); } }
而@MapperScan註解是和Spring整合Mybatis的使用是同樣的,都是在配置類上指定Mapper接口的路徑,你們能夠看一下我之前的一篇文章Mybaits 源碼解析 (十一)----- @MapperScan將Mapper接口生成代理注入到Spring-靜態代理和動態代理結合使用mybatis
原文出處:https://www.cnblogs.com/java-chen-hao/p/11849869.html