Spring boot上にmybatis plusを配置して使用します。


http://mp.baomidou.com/#/?id=%e7%ae%80%e4%bb%8bこれはmybatisplusの公式文書で、上はmybtisplusの配置の使用方法で、およびいくつかの機能の紹介です。
設定を開始します
maven依存

    <dependency>
      <groupId>org.mybatis.spring.boot</groupId>
      <artifactId>mybatis-spring-boot-starter</artifactId>
      <version>1.1.1</version>
    </dependency>
    <dependency>
      <groupId>com.baomidou</groupId>
      <artifactId>mybatis-plus</artifactId>
      <version>2.0-beta</version>
    </dependency>
configファイル

@Configuration
public class MybatisPlusConfig {
  @Autowired
  private DataSource dataSource;

  @Autowired
  private MybatisProperties properties;

  @Autowired
  private ResourceLoader resourceLoader = new DefaultResourceLoader();

  @Autowired(required = false)
  private Interceptor[] interceptors;

  @Autowired(required = false)
  private DatabaseIdProvider databaseIdProvider;

  /**
   *  mybatis-plus    
   */
  @Bean
  public PaginationInterceptor paginationInterceptor() {
    PaginationInterceptor page = new PaginationInterceptor();
    page.setDialectType("mysql");
    return page;
  }
  /**
   *       mybatis-autoconfigure          。     
   *      mybatis-boot       
   * @return
   */
  @Bean
  public MybatisSqlSessionFactoryBean mybatisSqlSessionFactoryBean() {
    MybatisSqlSessionFactoryBean mybatisPlus = new MybatisSqlSessionFactoryBean();
    mybatisPlus.setDataSource(dataSource);
    mybatisPlus.setVfs(SpringBootVFS.class);
    if (StringUtils.hasText(this.properties.getConfigLocation())) {
      mybatisPlus.setConfigLocation(this.resourceLoader.getResource(this.properties.getConfigLocation()));
    }
    mybatisPlus.setConfiguration(properties.getConfiguration());
    if (!ObjectUtils.isEmpty(this.interceptors)) {
      mybatisPlus.setPlugins(this.interceptors);
    }
    MybatisConfiguration mc = new MybatisConfiguration();
    mc.setDefaultScriptingLanguage(MybatisXMLLanguageDriver.class);
    mybatisPlus.setConfiguration(mc);
    if (this.databaseIdProvider != null) {
      mybatisPlus.setDatabaseIdProvider(this.databaseIdProvider);
    }
    if (StringUtils.hasLength(this.properties.getTypeAliasesPackage())) {
      mybatisPlus.setTypeAliasesPackage(this.properties.getTypeAliasesPackage());
    }
    if (StringUtils.hasLength(this.properties.getTypeHandlersPackage())) {
      mybatisPlus.setTypeHandlersPackage(this.properties.getTypeHandlersPackage());
    }
    if (!ObjectUtils.isEmpty(this.properties.resolveMapperLocations())) {
      mybatisPlus.setMapperLocations(this.properties.resolveMapperLocations());
    }
    return mybatisPlus;
  }
}

プラグインを@beanとしてconfigファイルに追加します。

@Bean
  public PaginationInterceptor paginationInterceptor() {
    PaginationInterceptor page = new PaginationInterceptor();
    page.setDialectType("mysql");
    return page;
  }
これは改ページプラグインです。
コード生成器は公式文書を参照してください。しかし、彼のコード生成器は修正できるところが多くないので、コード生成経路などを制御するしかないです。自由度が高くないので、mybatisplusコード生成部分を単独で引き出して、自分に適したものに修正して、jarパッケージを作って依存することをオススメします。
springboot propertiesファイル構成

# mybatis_config
mybatis.mapper-locations=classpath:com/boot/mapper/xml/*Mapper.xml 
mybatis.typeAliasesPackage=com.boot.entity
前はxmlファイルのパスです。
後者の場合は別名パッケージパス
springbootの起動類に注を付ける

@MapperScan("com.boot.mapper*")
@SpringBootApplication
public class BootApplication {
@mapperscanの中はdaoのスキャンパスです。
mybatisplusは比較的にそろっているcrudを提供しました。添削して調べます。mapper.xmlの中でsqlを書く必要はありません。直接に呼び出すことができます。
例:

//   controller:
Egg egg = new Egg();
eggService.insert(egg);
//   service
Egg egg = new Egg();
this.selectList(new EntityWrapper<Egg >(egg));//mybatisplus              
//   
mapper.selectList(new EntityWrapper<Egg >(egg));
分ページ検索デモ:
dao:リストに戻る

List<Role> getPage(Pagination page, RoleParam param) throws DataAccessException;
xml:普通のsqlで書けばいいです。他は自動的に綴ります。

<select id="getPage" resultMap="RoleResultMap">
  select 
  <include refid="columns"/> 
  from ella_role 
  <include refid="where"/>
 </select>

サービス:

public Page<EllaRole> getPage(RoleParam param) {
//new   page      current   ,size    ,order   (  asc    page.setAsc(false);)
    Page<Role> page = new Page<Role>(param.getCurrent(), param.getSize(), param.getOrder());
    page.setRecords(iRoleMapper.getPage(page, param));
    return page;
  }
end
次はいくつかの掲示板です。
生成されたエンティティには、メインキーを@TableIdで注釈します。そうでないとエラーが発生します。
データベースに下線のフィールドがあります。検索では値が取れません。configファイルのmybatis Sql Session FactoryBenメソッドに加えてください。

mybatisPlus.setDbColumnUnderline(true); 
domannのすべての属性はデータベースのフィールドにマッピングされます。もしあなたがデータベースにないなら、使う属性は上に@Table Field(exist=false)のラベルを追加してください。そうすると彼は無視されます。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。