77、SpringBoot----配置和扩展MyBatis

★ MyBatis的配置属性

MyBatis配置属性由MybatisProperties类(属性处理类、@ConfigurationProperties修饰)负责处理,

它负责处理mybatis.*开头的属性,例如:

- config-location:指定MyBatis自己的mybatis-config.xml文件的位置。
- check-config-location:设置是否对mybatis-config.xml配置文件执行存在性检查(没有就报错)。
- mapper-locations:指定XML Mapper文件的存储位置。
- type-aliases-package:为指定包下所有类自动分配别名。

具体可参考教材5.4.3小节

★ 通过ConfigurationCustomizer定制Configuration

  • 如需对MyBatis进行更高级的定制,MyBatis也提供了ConfigurationCustomizer。

  • MyBatis为整合Spring Boot提供的starter会自动搜索实现了ConfigurationCustomizer接口的Bean,

    并通过该Bean的customize()方法来设置Configuration。

    Configurtion是MyBatis配置文件的核心API,它负责加载mybatis-config.xml文件。

    MyBatis创建了Configuration之后,才会根据它来创建SqlSessionFActory。

代码演示:

需求:通过ConfigurationCustomizer定制Configuration,实现对MyBatis进行更高级的定制。
框架大概是这样:
77、SpringBoot----配置和扩展MyBatis_第1张图片

★ 扩展MyBatis

如需对MyBatis进行扩展,为它增加拦截器、类型处理器、脚本语言驱动、数据库Id提供者,
只要在Spring容器中部署这些扩展Bean即可,MyBatis为整合Spring Boot提供的starter可自动检测容器中实现了如下接口的Bean、
并将它们注册为MyBatis扩展组件:

- Interceptor:检测、并注册为MyBatis的拦截器。
- TypeHandler:检测、并注册为MyBatis的类型处理器。
- LanguageDriver:检测、并注册为MyBatis的脚本语言驱动。
- DatabaseIdProvider:检测、并注册为MyBatis的数据库Id提供者。


不管你是否整合Spring Boot,你要扩展Mybatis,
你都需要提供Interceptor、Typehandler\LanguageDriver、DatabaseIdProvider的实现类。

如果你不整合spring Boot, 就需要使用Mybatis自己的API来注册这些扩展的组件。
如果你整合spring boot,你只要将上面实现类配置成spring 容器中的Bean,mybatis就会自动注册它们。

▲ 扩展MyBatis的步骤:

(1)提供Interceptor、TypeHandler、LanguageDriver或DatabaseIdProvider接口的实现类

(2)并使用@Bean注解将这些实现类配置成Spring容器中的Bean,MyBatis就会自动检测、并注册它们,非常方便 。

你可能感兴趣的:(springboot,spring,boot,mybatis,tomcat)