All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mybatis.provider.EntityTableFactory Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
/*
 * Copyright 2020-2022 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.mybatis.provider;

/**
 * 实体类信息工厂,可以通过 SPI 加入处理链
 *
 * @author liuzh
 */
public interface EntityTableFactory extends Order {

  /**
   * 根据实体类创建 EntityTable,可以使用自己的注解来实现,这一步只返回 EntityTable,不处理其中的字段
   *
   * @param entityClass 实体类类型
   * @param chain       调用下一个
   * @return 实体类信息
   */
  EntityTable createEntityTable(Class entityClass, Chain chain);

  /**
   * 工厂链
   */
  interface Chain {
    /**
     * 根据实体类创建 EntityTable,可以使用自己的注解来实现,这一步只返回 EntityTable,不处理其中的字段
     *
     * @param entityClass 实体类类型
     * @return 实体类信息
     */
    EntityTable createEntityTable(Class entityClass);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy