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

templates.enjoy.serviceImpl.tpl Maven / Gradle / Ivy

The newest version!
#set(isCacheExample = serviceImplConfig.cacheExample)
#set(primaryKey = table.getPrimaryKey().getProperty())
#set(entityClassName = table.buildEntityClassName())
package #(packageConfig.serviceImplPackage);

import #(serviceImplConfig.buildSuperClassImport());
import #(packageConfig.entityPackage).#(table.buildEntityClassName());
import #(packageConfig.mapperPackage).#(table.buildMapperClassName());
#if(table.getGlobalConfig().isServiceGenerateEnable())
import #(packageConfig.servicePackage).#(table.buildServiceClassName());
#end
import org.springframework.stereotype.Service;
#if(isCacheExample)
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.query.QueryWrapper;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.cache.annotation.CacheConfig;
import org.springframework.cache.annotation.CacheEvict;

import java.io.Serializable;
import java.util.Collection;
import java.util.List;
#end

/**
 * #(table.getComment()) 服务层实现。
 *
 * @author #(javadocConfig.getAuthor())
 * @since #(javadocConfig.getSince())
 */
@Service
#if(isCacheExample)
@CacheConfig(cacheNames = "#(firstCharToLowerCase(entityClassName))")
#end
public class #(table.buildServiceImplClassName()) extends #(serviceImplConfig.buildSuperClassName())<#(table.buildMapperClassName()), #(table.buildEntityClassName())> #if(table.getGlobalConfig().isServiceGenerateEnable()) implements #(table.buildServiceClassName())#end {

#if(isCacheExample)

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @CacheEvict(allEntries = true)
    public boolean remove(QueryWrapper query) {
        return super.remove(query);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @CacheEvict(key = "#id")
    public boolean removeById(Serializable id) {
        return super.removeById(id);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @CacheEvict(allEntries = true)
    public boolean removeByIds(Collection ids) {
        return super.removeByIds(ids);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @CacheEvict(allEntries = true)
    public boolean update(#(entityClassName) entity, QueryWrapper query) {
        return super.update(entity, query);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @CacheEvict(key = "#entity.#(primaryKey)")
    public boolean updateById(#(entityClassName) entity, boolean ignoreNulls) {
        return super.updateById(entity, ignoreNulls);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @CacheEvict(allEntries = true)
    public boolean updateBatch(Collection<#(entityClassName)> entities, int batchSize) {
        return super.updateBatch(entities, batchSize);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#id")
    public #(entityClassName) getById(Serializable id) {
        return super.getById(id);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public #(entityClassName) getOne(QueryWrapper query) {
        return super.getOne(query);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public  R getOneAs(QueryWrapper query, Class asType) {
        return super.getOneAs(query, asType);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public Object getObj(QueryWrapper query) {
        return super.getObj(query);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public  R getObjAs(QueryWrapper query, Class asType) {
        return super.getObjAs(query, asType);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public List objList(QueryWrapper query) {
        return super.objList(query);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public  List objListAs(QueryWrapper query, Class asType) {
        return super.objListAs(query, asType);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public List<#(entityClassName)> list(QueryWrapper query) {
        return super.list(query);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public  List listAs(QueryWrapper query, Class asType) {
        return super.listAs(query, asType);
    }

    /**
     * @deprecated 无法通过注解进行缓存操作。
     */
#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Deprecated
    public List<#(entityClassName)> listByIds(Collection ids) {
        return super.listByIds(ids);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #query.toSQL()")
    public long count(QueryWrapper query) {
        return super.count(query);
    }

#if(table.getGlobalConfig().isServiceGenerateEnable())
    @Override
#end
    @Cacheable(key = "#root.methodName + ':' + #page.getPageSize() + ':' + #page.getPageNumber() + ':' + #query.toSQL()")
    public  Page pageAs(Page page, QueryWrapper query, Class asType) {
        return super.pageAs(page, query, asType);
    }

#end
}