1 |
|
mapper spring boot starter
1 |
|
基于mybatis-spring-boot-starter,新版本Mybatis Mapper不再基于mybatis-spring-boot-starter
提供自动配置MapperAutoConfiguration
mapper for MyBatis Generator
为了配合通用mapper,对MyBatis Generator做了一些自定义的扩展,主要包括:
- MapperCommentGenerator
自定义注释生成器
- useMapperCommentGenerator
给<context>
增加<property>
:useMapperCommentGenerator,默认值是true,表示使用自定义注释生成器MapperCommentGenerator
- MapperPlugin
1 |
|
属性 | 描述 | 备注 |
---|---|---|
caseSensitive | 默认值:false | |
forceAnnotation | 是否强制生成注解(@Table,@Column),默认值:false | 也用于注释生成器,依赖<context> 的<property> 之useMapperCommentGenerator |
beginningDelimiter | 默认值:空串 | 同上,作用于@Table和@Column |
endingDelimiter | 默认值:空串 | 同上,作用于@Table和@Column |
schema | 数据库schema,默认值:null | 表名前缀,作用于@Table |